Full Code of FredHutch/Oncoscape for AI

develop 2bbf6226c763 cached
746 files
168.5 MB
26.3M tokens
42751 symbols
1 requests
Copy disabled (too large) Download .txt
Showing preview only (105,549K chars total). Download the full file to get everything.
Repository: FredHutch/Oncoscape
Branch: develop
Commit: 2bbf6226c763
Files: 746
Total size: 168.5 MB

Directory structure:
gitextract__qhtuh1y/

├── .dockerignore
├── .gitattributes
├── .gitignore
├── .vscode/
│   └── launch.json
├── CONTRIBUTING.md
├── DOCKER.md
├── Dockerfile
├── HugoGenes.json
├── INSTALL.md
├── LICENSE
├── README.md
├── admin/
│   ├── .editorconfig
│   ├── .github/
│   │   ├── CONTRIBUTING.md
│   │   ├── ISSUE_TEMPLATE.md
│   │   └── PULL_REQUEST_TEMPLATE.md
│   ├── .gitignore
│   ├── .nvmrc
│   ├── .travis.yml
│   ├── .vscode/
│   │   ├── launch.json
│   │   └── settings.json
│   ├── 3d/
│   │   └── a2/
│   │       ├── chart3.html
│   │       ├── index.html
│   │       └── xxxchart3.html
│   ├── Dockerfile
│   ├── config/
│   │   ├── github-deploy/
│   │   │   └── index.js
│   │   ├── head-config.common.js
│   │   ├── helpers.js
│   │   ├── html-elements-plugin/
│   │   │   └── index.js
│   │   ├── karma.conf.js
│   │   ├── modules/
│   │   │   └── angular2-hmr-prod.js
│   │   ├── protractor.conf.js
│   │   ├── spec-bundle.js
│   │   ├── webpack.common.js
│   │   ├── webpack.dev.js
│   │   ├── webpack.github-deploy.js
│   │   ├── webpack.prod.js
│   │   └── webpack.test.js
│   ├── karma.conf.js
│   ├── package.json
│   ├── protractor.conf.js
│   ├── src/
│   │   ├── app/
│   │   │   ├── app.container.ts
│   │   │   ├── app.module.ts
│   │   │   ├── app.resolver.ts
│   │   │   ├── components/
│   │   │   │   ├── alert/
│   │   │   │   │   ├── alert.component.ts
│   │   │   │   │   └── alert.template.html
│   │   │   │   ├── breadcrumb/
│   │   │   │   │   ├── crumb.component.ts
│   │   │   │   │   ├── crumb.service.ts
│   │   │   │   │   ├── crumb.template.html
│   │   │   │   │   └── index.ts
│   │   │   │   ├── combobox/
│   │   │   │   │   ├── combo.component.ts
│   │   │   │   │   └── combo.template.html
│   │   │   │   ├── footer/
│   │   │   │   │   ├── footer.component.ts
│   │   │   │   │   └── footer.template.html
│   │   │   │   ├── header/
│   │   │   │   │   ├── header.component.ts
│   │   │   │   │   └── header.template.html
│   │   │   │   ├── index.ts
│   │   │   │   ├── modal/
│   │   │   │   │   ├── modal.component.ts
│   │   │   │   │   └── modal.template.html
│   │   │   │   ├── sidebar/
│   │   │   │   │   ├── sidebar.component.ts
│   │   │   │   │   └── sidebar.template.html
│   │   │   │   └── smallbox/
│   │   │   │       ├── smallbox.component.ts
│   │   │   │       └── smallbox.template.html
│   │   │   ├── containers/
│   │   │   │   ├── +admin/
│   │   │   │   │   ├── acls/
│   │   │   │   │   │   ├── acls.container.ts
│   │   │   │   │   │   ├── acls.template.html
│   │   │   │   │   │   └── index.ts
│   │   │   │   │   ├── admin.container.ts
│   │   │   │   │   ├── admin.module.ts
│   │   │   │   │   ├── admin.routes.ts
│   │   │   │   │   ├── admin.template.html
│   │   │   │   │   ├── apis/
│   │   │   │   │   │   ├── apis.container.ts
│   │   │   │   │   │   ├── apis.template.html
│   │   │   │   │   │   ├── edit.container.ts
│   │   │   │   │   │   ├── index.ts
│   │   │   │   │   │   ├── new.container.ts
│   │   │   │   │   │   ├── new.template.html
│   │   │   │   │   │   ├── plugs.container.ts
│   │   │   │   │   │   └── plugs.template.html
│   │   │   │   │   ├── cluster/
│   │   │   │   │   │   ├── cluster.container.ts
│   │   │   │   │   │   ├── cluster.template.html
│   │   │   │   │   │   └── index.ts
│   │   │   │   │   ├── consumers/
│   │   │   │   │   │   ├── consumers.container.ts
│   │   │   │   │   │   ├── consumers.template.html
│   │   │   │   │   │   ├── edit.container.ts
│   │   │   │   │   │   ├── index.ts
│   │   │   │   │   │   ├── new.container.ts
│   │   │   │   │   │   └── new.template.html
│   │   │   │   │   ├── dashboard/
│   │   │   │   │   │   ├── dashboard.container.ts
│   │   │   │   │   │   ├── dashboard.template.html
│   │   │   │   │   │   └── index.ts
│   │   │   │   │   ├── index.ts
│   │   │   │   │   └── plugins/
│   │   │   │   │       ├── details.container.ts
│   │   │   │   │       ├── details.template.html
│   │   │   │   │       ├── forms/
│   │   │   │   │       │   ├── control.base.ts
│   │   │   │   │       │   ├── form.manager.ts
│   │   │   │   │       │   ├── form.service.ts
│   │   │   │   │       │   └── index.ts
│   │   │   │   │       ├── index.ts
│   │   │   │   │       ├── new.consumer.container.ts
│   │   │   │   │       ├── new.consumer.template.html
│   │   │   │   │       ├── new.plugin.container.ts
│   │   │   │   │       ├── new.plugin.template.html
│   │   │   │   │       ├── plugins.container.ts
│   │   │   │   │       └── plugins.template.html
│   │   │   │   ├── container.module.ts
│   │   │   │   ├── container.routes.ts
│   │   │   │   ├── home/
│   │   │   │   │   ├── home.container.ts
│   │   │   │   │   └── index.ts
│   │   │   │   ├── index.ts
│   │   │   │   └── login/
│   │   │   │       ├── index.ts
│   │   │   │       ├── login.container.ts
│   │   │   │       └── login.template.html
│   │   │   ├── core/
│   │   │   │   ├── configurator.ts
│   │   │   │   ├── container.ts
│   │   │   │   ├── descriptor.ts
│   │   │   │   ├── index.ts
│   │   │   │   ├── json.formatter.ts
│   │   │   │   ├── persistence.ts
│   │   │   │   └── state.ts
│   │   │   ├── environment.ts
│   │   │   ├── index.ts
│   │   │   └── shared/
│   │   │       ├── adapters/
│   │   │       │   ├── driver.ts
│   │   │       │   ├── index.ts
│   │   │       │   └── rest.adapter.ts
│   │   │       ├── constants.ts
│   │   │       ├── core.module.ts
│   │   │       ├── directives/
│   │   │       │   ├── fileselect.directive.ts
│   │   │       │   ├── index.ts
│   │   │       │   ├── size.directive.ts
│   │   │       │   └── tooltip.directive.ts
│   │   │       ├── index.ts
│   │   │       ├── models/
│   │   │       │   ├── apis.model.ts
│   │   │       │   ├── base.model.ts
│   │   │       │   ├── consumers.model.ts
│   │   │       │   ├── index.ts
│   │   │       │   ├── kong.model.ts
│   │   │       │   ├── menu.model.ts
│   │   │       │   ├── plugins/
│   │   │       │   │   ├── acl.model.ts
│   │   │       │   │   ├── basic.model.ts
│   │   │       │   │   ├── bot.model.ts
│   │   │       │   │   ├── correlation.model.ts
│   │   │       │   │   ├── cors.model.ts
│   │   │       │   │   ├── hmac.model.ts
│   │   │       │   │   ├── index.ts
│   │   │       │   │   ├── ip.model.ts
│   │   │       │   │   ├── jwt.model.ts
│   │   │       │   │   ├── key.model.ts
│   │   │       │   │   ├── ldap.model.ts
│   │   │       │   │   ├── oauth.model.ts
│   │   │       │   │   ├── rate.model.ts
│   │   │       │   │   ├── request.limiting.model.ts
│   │   │       │   │   ├── request.transformer.model.ts
│   │   │       │   │   ├── response.limiting.model.ts
│   │   │       │   │   └── ssl.model.ts
│   │   │       │   ├── plugins.model.ts
│   │   │       │   └── status.model.ts
│   │   │       ├── services/
│   │   │       │   ├── acls.service.ts
│   │   │       │   ├── apis.service.ts
│   │   │       │   ├── auth.service.ts
│   │   │       │   ├── base.service.ts
│   │   │       │   ├── cluster.service.ts
│   │   │       │   ├── consumers.service.ts
│   │   │       │   ├── guard.service.ts
│   │   │       │   ├── index.ts
│   │   │       │   ├── plugins.service.ts
│   │   │       │   ├── status.service.ts
│   │   │       │   └── uploader.service.ts
│   │   │       └── share.module.ts
│   │   ├── assets/
│   │   │   ├── build/
│   │   │   │   ├── adminlte-less/
│   │   │   │   │   ├── .csslintrc
│   │   │   │   │   ├── 404_500_errors.less
│   │   │   │   │   ├── AdminLTE.less
│   │   │   │   │   ├── alerts.less
│   │   │   │   │   ├── bootstrap-social.less
│   │   │   │   │   ├── boxes.less
│   │   │   │   │   ├── buttons.less
│   │   │   │   │   ├── callout.less
│   │   │   │   │   ├── carousel.less
│   │   │   │   │   ├── control-sidebar.less
│   │   │   │   │   ├── core.less
│   │   │   │   │   ├── direct-chat.less
│   │   │   │   │   ├── dropdown.less
│   │   │   │   │   ├── forms.less
│   │   │   │   │   ├── fullcalendar.less
│   │   │   │   │   ├── header.less
│   │   │   │   │   ├── info-box.less
│   │   │   │   │   ├── invoice.less
│   │   │   │   │   ├── labels.less
│   │   │   │   │   ├── lockscreen.less
│   │   │   │   │   ├── login_and_register.less
│   │   │   │   │   ├── mailbox.less
│   │   │   │   │   ├── miscellaneous.less
│   │   │   │   │   ├── mixins.less
│   │   │   │   │   ├── modal.less
│   │   │   │   │   ├── navs.less
│   │   │   │   │   ├── print.less
│   │   │   │   │   ├── products.less
│   │   │   │   │   ├── profile.less
│   │   │   │   │   ├── progress-bars.less
│   │   │   │   │   ├── select2.less
│   │   │   │   │   ├── sidebar-mini.less
│   │   │   │   │   ├── sidebar.less
│   │   │   │   │   ├── skins/
│   │   │   │   │   │   ├── _all-skins.less
│   │   │   │   │   │   ├── skin-black-light.less
│   │   │   │   │   │   ├── skin-black.less
│   │   │   │   │   │   ├── skin-blue-light.less
│   │   │   │   │   │   ├── skin-blue.less
│   │   │   │   │   │   ├── skin-green-light.less
│   │   │   │   │   │   ├── skin-green.less
│   │   │   │   │   │   ├── skin-purple-light.less
│   │   │   │   │   │   ├── skin-purple.less
│   │   │   │   │   │   ├── skin-red-light.less
│   │   │   │   │   │   ├── skin-red.less
│   │   │   │   │   │   ├── skin-yellow-light.less
│   │   │   │   │   │   └── skin-yellow.less
│   │   │   │   │   ├── small-box.less
│   │   │   │   │   ├── social-widgets.less
│   │   │   │   │   ├── table.less
│   │   │   │   │   ├── timeline.less
│   │   │   │   │   ├── users-list.less
│   │   │   │   │   └── variables.less
│   │   │   │   ├── bootstrap-less/
│   │   │   │   │   ├── mixins/
│   │   │   │   │   │   ├── alerts.less
│   │   │   │   │   │   ├── background-variant.less
│   │   │   │   │   │   ├── border-radius.less
│   │   │   │   │   │   ├── buttons.less
│   │   │   │   │   │   ├── center-block.less
│   │   │   │   │   │   ├── clearfix.less
│   │   │   │   │   │   ├── forms.less
│   │   │   │   │   │   ├── gradients.less
│   │   │   │   │   │   ├── grid-framework.less
│   │   │   │   │   │   ├── grid.less
│   │   │   │   │   │   ├── hide-text.less
│   │   │   │   │   │   ├── image.less
│   │   │   │   │   │   ├── labels.less
│   │   │   │   │   │   ├── list-group.less
│   │   │   │   │   │   ├── nav-divider.less
│   │   │   │   │   │   ├── nav-vertical-align.less
│   │   │   │   │   │   ├── opacity.less
│   │   │   │   │   │   ├── pagination.less
│   │   │   │   │   │   ├── panels.less
│   │   │   │   │   │   ├── progress-bar.less
│   │   │   │   │   │   ├── reset-filter.less
│   │   │   │   │   │   ├── reset-text.less
│   │   │   │   │   │   ├── resize.less
│   │   │   │   │   │   ├── responsive-visibility.less
│   │   │   │   │   │   ├── size.less
│   │   │   │   │   │   ├── tab-focus.less
│   │   │   │   │   │   ├── table-row.less
│   │   │   │   │   │   ├── text-emphasis.less
│   │   │   │   │   │   ├── text-overflow.less
│   │   │   │   │   │   └── vendor-prefixes.less
│   │   │   │   │   ├── mixins.less
│   │   │   │   │   └── variables.less
│   │   │   │   ├── fontawesome-less/
│   │   │   │   │   ├── animated.less
│   │   │   │   │   ├── bordered-pulled.less
│   │   │   │   │   ├── core.less
│   │   │   │   │   ├── fixed-width.less
│   │   │   │   │   ├── font-awesome.less
│   │   │   │   │   ├── icons.less
│   │   │   │   │   ├── larger.less
│   │   │   │   │   ├── list.less
│   │   │   │   │   ├── mixins.less
│   │   │   │   │   ├── path.less
│   │   │   │   │   ├── rotated-flipped.less
│   │   │   │   │   ├── screen-reader.less
│   │   │   │   │   ├── stacked.less
│   │   │   │   │   └── variables.less
│   │   │   │   ├── framework-less/
│   │   │   │   │   ├── _combobox.less
│   │   │   │   │   └── foundation.less
│   │   │   │   ├── ionicons-less/
│   │   │   │   │   ├── _ionicons-font.less
│   │   │   │   │   ├── _ionicons-icons.less
│   │   │   │   │   ├── _ionicons-variables.less
│   │   │   │   │   └── ionicons.less
│   │   │   │   └── style.less
│   │   │   ├── css/
│   │   │   │   ├── .gitkeep
│   │   │   │   ├── so.css
│   │   │   │   ├── style.css
│   │   │   │   └── style.css.bu.css
│   │   │   ├── data.json
│   │   │   ├── fonts/
│   │   │   │   └── FontAwesome.otf
│   │   │   ├── humans.txt
│   │   │   ├── icon/
│   │   │   │   └── browserconfig.xml
│   │   │   ├── manifest.json
│   │   │   ├── mock-data/
│   │   │   │   └── mock-data.json
│   │   │   ├── robots.txt
│   │   │   └── service-worker.js
│   │   ├── custom-typings.d.ts
│   │   ├── index.html
│   │   ├── main.browser.ts
│   │   ├── polyfills.browser.ts
│   │   └── vendor.browser.ts
│   ├── tsconfig.json
│   ├── tslint.json
│   ├── typedoc.json
│   └── webpack.config.js
├── cheatsheet.md
├── circle.yml
├── client/
│   ├── .bowerrc
│   ├── .editorconfig
│   ├── .eslintrc
│   ├── .gitignore
│   ├── .yo-rc.json
│   ├── bower.json
│   ├── e2e/
│   │   ├── .eslintrc
│   │   ├── main.po.js
│   │   └── main.spec.js
│   ├── gulp/
│   │   ├── .eslintrc
│   │   ├── build.js
│   │   ├── conf.js
│   │   ├── e2e-tests.js
│   │   ├── inject.js
│   │   ├── scripts.js
│   │   ├── server.js
│   │   ├── styles.js
│   │   ├── unit-tests.js
│   │   └── watch.js
│   ├── gulpfile.js
│   ├── karma.conf.js
│   ├── package.json
│   ├── protractor.conf.js
│   └── src/
│       ├── app/
│       │   ├── components/
│       │   │   ├── barchart/
│       │   │   │   ├── barchart.directive.js
│       │   │   │   ├── barchart.html
│       │   │   │   └── barchart.scss
│       │   │   ├── cohortmenu/
│       │   │   │   ├── cohortmenu.directive.js
│       │   │   │   ├── cohortmenu.html
│       │   │   │   └── cohortmenu.scss
│       │   │   ├── collectionpanel/
│       │   │   │   ├── collectionpanel.directive.js
│       │   │   │   ├── collectionpanel.html
│       │   │   │   └── collectionpanel.scss
│       │   │   ├── colorpanel/
│       │   │   │   ├── colorpanel.directive.js
│       │   │   │   ├── colorpanel.html
│       │   │   │   └── colorpanel.scss
│       │   │   ├── compareclusters/
│       │   │   │   ├── compareclusters.directive.js
│       │   │   │   ├── compareclusters.html
│       │   │   │   └── compareclusters.scss
│       │   │   ├── datasource/
│       │   │   │   ├── datasource.directive.js
│       │   │   │   ├── datasource.html
│       │   │   │   └── datasource.scss
│       │   │   ├── genedashboard/
│       │   │   │   ├── genedashboard.directive.js
│       │   │   │   ├── genedashboard.html
│       │   │   │   └── genedashboard.scss
│       │   │   ├── genemenu/
│       │   │   │   ├── genemenu.directive.js
│       │   │   │   ├── genemenu.html
│       │   │   │   └── genemenu.scss
│       │   │   ├── header/
│       │   │   │   ├── header.directive.js
│       │   │   │   ├── header.html
│       │   │   │   └── header.scss
│       │   │   ├── heatmap/
│       │   │   │   ├── heatmap.directive.js
│       │   │   │   ├── heatmap.html
│       │   │   │   └── heatmap.scss
│       │   │   ├── help/
│       │   │   │   ├── help.directive.js
│       │   │   │   ├── help.html
│       │   │   │   └── help.scss
│       │   │   ├── importpanel/
│       │   │   │   ├── importpanel.directive.js
│       │   │   │   ├── importpanel.html
│       │   │   │   └── importpanel.scss
│       │   │   ├── landing/
│       │   │   │   ├── landing.directive.js
│       │   │   │   ├── landing.html
│       │   │   │   └── landing.scss
│       │   │   ├── layoutpanel/
│       │   │   │   ├── layoutpanel.directive.js
│       │   │   │   ├── layoutpanel.html
│       │   │   │   └── layoutpanel.scss
│       │   │   ├── loader/
│       │   │   │   ├── loader.directive.js
│       │   │   │   ├── loader.html
│       │   │   │   └── loader.scss
│       │   │   ├── login/
│       │   │   │   ├── login.directive.js
│       │   │   │   ├── login.html
│       │   │   │   └── login.scss
│       │   │   ├── markers/
│       │   │   │   ├── markers.directive.js
│       │   │   │   ├── markers.html
│       │   │   │   ├── markers.scss
│       │   │   │   └── markers.worker.js
│       │   │   ├── oncoscape/
│       │   │   │   ├── oncoscape.api.service.js
│       │   │   │   ├── oncoscape.auth.service.js
│       │   │   │   ├── oncoscape.exception.factory.js
│       │   │   │   ├── oncoscape.http.factory.js
│       │   │   │   └── oncoscape.sound.service.js
│       │   │   ├── parallelcoord/
│       │   │   │   ├── parallelcoord.directive.js
│       │   │   │   ├── parallelcoord.html
│       │   │   │   └── parallelcoord.scss
│       │   │   ├── pathways/
│       │   │   │   ├── pathways.directive.js
│       │   │   │   ├── pathways.html
│       │   │   │   └── pathways.scss
│       │   │   ├── pca/
│       │   │   │   ├── pca.directive.js
│       │   │   │   ├── pca.html
│       │   │   │   └── pca.scss
│       │   │   ├── plsr/
│       │   │   │   ├── plsr.directive.js
│       │   │   │   ├── plsr.html
│       │   │   │   └── plsr.scss
│       │   │   ├── spreadsheet/
│       │   │   │   ├── spreadsheet.directive.js
│       │   │   │   ├── spreadsheet.html
│       │   │   │   └── spreadsheet.scss
│       │   │   ├── sunburst/
│       │   │   │   ├── sunburst.directive.js
│       │   │   │   ├── sunburst.html
│       │   │   │   └── sunburst.scss
│       │   │   ├── survival/
│       │   │   │   ├── survival.directive.js
│       │   │   │   ├── survival.html
│       │   │   │   └── survival.scss
│       │   │   ├── timelines/
│       │   │   │   ├── timelines.directive.js
│       │   │   │   ├── timelines.html
│       │   │   │   └── timelines.scss
│       │   │   ├── tools/
│       │   │   │   ├── tools.directive.js
│       │   │   │   ├── tools.html
│       │   │   │   └── tools.scss
│       │   │   ├── tray/
│       │   │   │   ├── tray.barchart.directive.js
│       │   │   │   ├── tray.directive.js
│       │   │   │   ├── tray.html
│       │   │   │   ├── tray.piechart.directive.js
│       │   │   │   └── tray.scss
│       │   │   └── userdatasource/
│       │   │       ├── userdatasource.directive.js
│       │   │       ├── userdatasource.html
│       │   │       └── userdatasource.scss
│       │   ├── index.config.js
│       │   ├── index.constants.js
│       │   ├── index.module.js
│       │   ├── index.route.js
│       │   ├── index.run.js
│       │   └── index.scss
│       ├── assets/
│       │   ├── bootstrap.js
│       │   ├── hello.js
│       │   ├── images/
│       │   │   └── textimage.js
│       │   └── lasso.js
│       ├── fonts/
│       │   └── FontAwesome.otf
│       ├── index.html
│       ├── privacy-policy.html
│       └── terms-of-service.html
├── client-build/
│   ├── app/
│   │   └── components/
│   │       └── markers/
│   │           └── markers.worker.js
│   ├── app.manifest
│   ├── assets/
│   │   ├── images/
│   │   │   └── textimage.js
│   │   └── lasso.js
│   ├── fonts/
│   │   └── FontAwesome.otf
│   ├── index.html
│   ├── privacy-policy.html
│   ├── scripts/
│   │   ├── app-02b6e51953.js
│   │   ├── app-04fb2e86f5.js
│   │   ├── app-13a45ef8c2.js
│   │   ├── app-164bd53929.js
│   │   ├── app-2ad8bbe0e6.js
│   │   ├── app-304ad47df5.js
│   │   ├── app-33010de103.js
│   │   ├── app-379a6d780c.js
│   │   ├── app-3aec4cf16a.js
│   │   ├── app-44a4050100.js
│   │   ├── app-493eb88db0.js
│   │   ├── app-4c74933d03.js
│   │   ├── app-584bf5bdfc.js
│   │   ├── app-5e4c0f52c4.js
│   │   ├── app-64850464b9.js
│   │   ├── app-7252b57c8a.js
│   │   ├── app-817f97333e.js
│   │   ├── app-95d9b45a1f.js
│   │   ├── app-98f7a31a45.js
│   │   ├── app-9e24740f47.js
│   │   ├── app-a00e325965.js
│   │   ├── app-ad7f3d64b7.js
│   │   ├── app-b29ee7ba93.js
│   │   ├── app-b6c603ad5a.js
│   │   ├── app-c5578db98c.js
│   │   ├── app-d30199b1fb.js
│   │   ├── app-d5579d90fc.js
│   │   ├── app-f211e6575c.js
│   │   ├── app-f34b7f2d5b.js
│   │   ├── app-fa41109fba.js
│   │   ├── vendor-02f3257444.js
│   │   ├── vendor-0d17bec3e0.js
│   │   ├── vendor-37afdc9179.js
│   │   ├── vendor-4ec3236b68.js
│   │   ├── vendor-86b5cb81a1.js
│   │   ├── vendor-badfbf33c8.js
│   │   ├── vendor-c20a98c97f.js
│   │   ├── vendor-c603de5b84.js
│   │   ├── vendor-caf5f1c0aa.js
│   │   └── vendor-f340df8778.js
│   ├── styles/
│   │   ├── app-15d8b9db63.css
│   │   ├── app-1601e15eb1.css
│   │   ├── app-17cb1cfc12.css
│   │   ├── app-2df1347999.css
│   │   ├── app-495a58e054.css
│   │   ├── app-5daa7f610e.css
│   │   ├── app-5e155a927d.css
│   │   ├── app-65b79735ed.css
│   │   ├── app-8c98214c95.css
│   │   ├── app-a5237ed41e.css
│   │   ├── app-a89e70f280.css
│   │   ├── app-ae12414f8f.css
│   │   ├── app-c47d90ead9.css
│   │   ├── app-e3bbae4248.css
│   │   ├── app-e67fcb941d.css
│   │   ├── app-ee01726226.css
│   │   ├── app-f2ffd68e38.css
│   │   └── vendor-c668aa093a.css
│   └── terms-of-service.html
├── cpu/
│   ├── oncoscape/
│   │   ├── .Rbuildignore
│   │   ├── DESCRIPTION
│   │   ├── GDCdata/
│   │   │   └── TCGA-GBM/
│   │   │       └── legacy/
│   │   │           └── Gene_expression/
│   │   │               └── Gene_expression_quantification/
│   │   │                   ├── 030e6faf-c38d-434b-85fc-d9e1428fbfa2/
│   │   │                   │   └── unc.edu.d1431a36-5c68-4e6e-9aea-72afe374efd1.1538177.rsem.genes.normalized_results
│   │   │                   ├── 033f8268-6964-46bf-88a2-d5bcc40561d0/
│   │   │                   │   └── unc.edu.d4934e65-dc47-4f98-b4d4-e9034a96f446.2403566.rsem.genes.normalized_results
│   │   │                   ├── 0351f0bd-0835-468a-90a9-134d52861021/
│   │   │                   │   └── unc.edu.85ef1d2f-2371-4fc7-a6f4-d102f4430b8a.2403422.rsem.genes.normalized_results
│   │   │                   ├── 0572e70f-ec92-457d-a315-c24f50254d13/
│   │   │                   │   └── unc.edu.f4d31bec-0bf5-4f59-ae0e-37170f1b692e.1532658.rsem.genes.normalized_results
│   │   │                   ├── 07ae5b2b-f7a2-4ea2-9bc3-91f45a1eadc5/
│   │   │                   │   └── unc.edu.ebe88950-c783-4487-9bfc-ccaaeacf256c.1534069.rsem.genes.normalized_results
│   │   │                   ├── 085d4070-ea44-4b80-9ec1-109a213afbfb/
│   │   │                   │   └── unc.edu.01b7a29e-0d3a-4a18-8cb6-f8a329f9d6e6.1545293.rsem.genes.normalized_results
│   │   │                   ├── 09a38471-f558-43cf-b127-ab42d9401ad9/
│   │   │                   │   └── unc.edu.612ef912-5a28-4c11-8703-3376f51afef5.1542073.rsem.genes.normalized_results
│   │   │                   ├── 0c79f62e-96ce-4e15-ae44-23868d2dde62/
│   │   │                   │   └── unc.edu.8fdc3c56-a96b-4cad-983a-12e6ef373069.1539929.rsem.genes.normalized_results
│   │   │                   ├── 0caa561c-2aa1-4082-90bf-c8f1a4ee104c/
│   │   │                   │   └── unc.edu.da360144-ffaf-4f38-bd87-96319fa8d2d4.1535650.rsem.genes.normalized_results
│   │   │                   ├── 0d21f209-d5ea-4686-a3cb-5f2013603846/
│   │   │                   │   └── unc.edu.db5b5af5-c221-4268-a978-e12c550989e7.1534385.rsem.genes.normalized_results
│   │   │                   ├── 0db7b8e3-444f-43e5-86fb-f021bacbbfdd/
│   │   │                   │   └── unc.edu.84d56a0b-6ee1-4fe7-9491-d8815af1d6f5.1540596.rsem.genes.normalized_results
│   │   │                   ├── 0f531499-6c9a-456b-9665-0423423da136/
│   │   │                   │   └── unc.edu.6f2fedb4-66e2-48fd-8744-cbd30075bb03.1540749.rsem.genes.normalized_results
│   │   │                   ├── 17fcd0b6-0917-4f48-8ca7-17f22485bf34/
│   │   │                   │   └── unc.edu.497767ca-3148-46d2-b4fc-15530c678b0b.1543281.rsem.genes.normalized_results
│   │   │                   ├── 1b154036-1468-4c91-9c97-edab3704b46b/
│   │   │                   │   └── unc.edu.570d3a26-6bcf-4442-aba9-95a01e84aa16.1542348.rsem.genes.normalized_results
│   │   │                   ├── 1b32438f-fc93-4855-99fc-c95fe47df82c/
│   │   │                   │   └── unc.edu.51fff807-cfea-4ff5-bd35-093b0c18f0fb.1543121.rsem.genes.normalized_results
│   │   │                   ├── 1e7f68da-686a-47d6-9272-bdd4b498686d/
│   │   │                   │   └── unc.edu.acb1160e-036a-4108-a9ce-d5f954191593.1538785.rsem.genes.normalized_results
│   │   │                   ├── 1f206613-6643-47d3-8dbd-26e0520756e9/
│   │   │                   │   └── unc.edu.37218c7d-74ed-43db-9556-a09006645998.1543891.rsem.genes.normalized_results
│   │   │                   ├── 217d72e9-4d6f-409d-911c-0a70b17a0adc/
│   │   │                   │   └── unc.edu.b469eb7c-723f-4870-b4e4-ebfaae7a118b.1536566.rsem.genes.normalized_results
│   │   │                   ├── 2316e46f-a138-4974-b0d7-c30b051468ad/
│   │   │                   │   └── unc.edu.f46e05f2-56b9-4a31-b0ec-882414a7aaf6.1532458.rsem.genes.normalized_results
│   │   │                   ├── 23b7ac20-d72e-4218-b206-b46ddddf0d83/
│   │   │                   │   └── unc.edu.05a2eea8-f366-4ae7-80f3-03324fb6e66e.1545318.rsem.genes.normalized_results
│   │   │                   ├── 23c9ca28-cef0-46e0-b126-aea5a531695f/
│   │   │                   │   └── unc.edu.ec85fbac-e181-4559-b601-d2efe44e37a8.1533900.rsem.genes.normalized_results
│   │   │                   ├── 24f041b4-0b63-4f5b-9c17-4de92f54ef3d/
│   │   │                   │   └── unc.edu.903d756b-42ba-49bd-9a53-085b3211d8a7.1539346.rsem.genes.normalized_results
│   │   │                   ├── 25565ee6-2c84-4474-9ec1-bd4f0a0cb507/
│   │   │                   │   └── unc.edu.61677ea1-64a7-46e3-8b99-784ee9af1ba5.1542154.rsem.genes.normalized_results
│   │   │                   ├── 27e3f11d-413d-4fb4-a56e-7ecdef403e78/
│   │   │                   │   └── unc.edu.92972663-4231-4e24-96d1-23857a445e03.1539770.rsem.genes.normalized_results
│   │   │                   ├── 28724a99-f098-43eb-b711-ff05734d7757/
│   │   │                   │   └── unc.edu.2db5af77-d0af-4c3c-bd2a-779e0a7228e0.1544729.rsem.genes.normalized_results
│   │   │                   ├── 28c63d25-49d5-45a6-b1d2-370b1d481457/
│   │   │                   │   └── unc.edu.748dc9ed-758b-43c9-af66-111f6ab3d6ce.1541034.rsem.genes.normalized_results
│   │   │                   ├── 2aabdc91-32ac-4c50-9a42-71f381136917/
│   │   │                   │   └── unc.edu.35578669-fb40-49fa-b6b5-3bd0f239fa7e.1544391.rsem.genes.normalized_results
│   │   │                   ├── 2bbfccc5-8dba-49c2-be90-1dd674d6c6fe/
│   │   │                   │   └── unc.edu.10c78528-13e4-4ce1-b171-939c9e4492d8.1544846.rsem.genes.normalized_results
│   │   │                   ├── 2eb357cb-b4b3-4e09-9a4a-a0a01f6fee1d/
│   │   │                   │   └── unc.edu.48f886d5-bb04-4fd1-809c-4b85730c4208.1543535.rsem.genes.normalized_results
│   │   │                   ├── 2f7364c8-c978-4762-9d3a-006ba984052c/
│   │   │                   │   └── unc.edu.47fbba7a-4914-4bcd-9fea-7ebb84fb4b47.1543813.rsem.genes.normalized_results
│   │   │                   ├── 2fab4b97-e5cb-45c5-afd8-3026d17ee7ef/
│   │   │                   │   └── unc.edu.2cd6082b-d5e7-45a1-96f9-8ef4cccf8533.1544424.rsem.genes.normalized_results
│   │   │                   ├── 30d564ee-3d4d-4495-ae83-068d7c365e24/
│   │   │                   │   └── unc.edu.48724ea4-25f1-463c-883a-69897e7d9a41.1543761.rsem.genes.normalized_results
│   │   │                   ├── 31535411-fb03-489e-8a24-a5b068e47665/
│   │   │                   │   └── unc.edu.f4398f60-1a5f-426f-8d4c-ab52d815bb98.1532557.rsem.genes.normalized_results
│   │   │                   ├── 33f771a6-3e17-4fec-8d7c-9c23b5e077a0/
│   │   │                   │   └── unc.edu.ca803595-2792-4d7d-81f6-cce8d96d0119.1538272.rsem.genes.normalized_results
│   │   │                   ├── 34780b11-7c55-4792-8454-9ef4b0a5cc09/
│   │   │                   │   └── unc.edu.95d8884d-0961-4070-be07-55dce4c7bc8f.1539496.rsem.genes.normalized_results
│   │   │                   ├── 35a1796f-2f29-41f0-b0a2-2b7623f990a0/
│   │   │                   │   └── unc.edu.6f987110-3dbf-4f06-952a-e1aea4b81b44.1540887.rsem.genes.normalized_results
│   │   │                   ├── 35e58acc-3367-4077-9c55-e9ec8166aa04/
│   │   │                   │   └── unc.edu.03422479-a670-44ed-a9f7-33f4554ef6f6.1545390.rsem.genes.normalized_results
│   │   │                   ├── 36f8d0b4-a8b9-4749-9797-83f21befa3e8/
│   │   │                   │   └── unc.edu.07775763-1931-4f95-ad0a-094a228a3770.1545195.rsem.genes.normalized_results
│   │   │                   ├── 3928de1a-346f-4d8e-8a37-b922395f0c08/
│   │   │                   │   └── unc.edu.d39f75a1-3216-4f0a-86d2-0055feced3dd.1537587.rsem.genes.normalized_results
│   │   │                   ├── 3c6504dd-0683-40ec-9919-fe3e351cc297/
│   │   │                   │   └── unc.edu.bbd74b84-fee5-45ee-9b76-b84d54a42a08.2403856.rsem.genes.normalized_results
│   │   │                   ├── 3d156563-07d5-4158-8e4c-8a4c0ab15183/
│   │   │                   │   └── unc.edu.a0dfc338-c576-4a9c-8db3-3bbbcd5dc960.1539575.rsem.genes.normalized_results
│   │   │                   ├── 4050727b-22e8-4102-93f7-2371d8f37ed9/
│   │   │                   │   └── unc.edu.125927b5-24fd-4910-8b21-6fe37adb8a7c.1544945.rsem.genes.normalized_results
│   │   │                   ├── 40ae6f2d-3491-4b41-9e96-63b081bef293/
│   │   │                   │   └── unc.edu.ee783da8-98c4-4107-8e9b-af8580ac2f24.1533118.rsem.genes.normalized_results
│   │   │                   ├── 40b345d0-129d-47d9-86e3-3938730c6694/
│   │   │                   │   └── unc.edu.4aa70762-1a0e-4b38-be77-a89db0955193.1542658.rsem.genes.normalized_results
│   │   │                   ├── 429c0237-d2bd-4e4d-90ca-da77818ebf7c/
│   │   │                   │   └── unc.edu.9f591278-eec9-422f-9b78-77f65fa84f18.1539408.rsem.genes.normalized_results
│   │   │                   ├── 43c9796d-841e-471e-a813-fa2ffff44298/
│   │   │                   │   └── unc.edu.17c98d8c-8bd4-4b16-a384-0497d730f497.1545016.rsem.genes.normalized_results
│   │   │                   ├── 45dd1666-976c-4229-943e-ae1631fd8ad6/
│   │   │                   │   └── unc.edu.f2d1056f-1329-44e4-8269-0e7dde93d64a.1532585.rsem.genes.normalized_results
│   │   │                   ├── 462c000b-c125-4b6b-9f6a-ae423f63bc06/
│   │   │                   │   └── unc.edu.25315562-5f8e-46d0-ab77-d1f6ce75270b.1544654.rsem.genes.normalized_results
│   │   │                   ├── 464027f4-4b44-4c76-9260-887c3a38f1a0/
│   │   │                   │   └── unc.edu.33daf82d-0b4d-474e-84d7-f21c47077c95.1542932.rsem.genes.normalized_results
│   │   │                   ├── 46cc24f6-0ef9-48e9-a96a-3e72960c7272/
│   │   │                   │   └── unc.edu.49516e85-eebe-491b-90eb-c76e4425f130.1543064.rsem.genes.normalized_results
│   │   │                   ├── 4cd4dc2f-93d5-4ee1-94d0-87465ce0f7c8/
│   │   │                   │   └── unc.edu.a77fc356-53b6-4932-a369-4bb7b89f8ed2.1538133.rsem.genes.normalized_results
│   │   │                   ├── 4ecfcdc3-0227-4bb0-b175-06a47cf647a1/
│   │   │                   │   └── unc.edu.31398055-e000-4ca1-a37d-aac2df5920b4.1544172.rsem.genes.normalized_results
│   │   │                   ├── 4f366619-7eb2-4d1e-bf2c-5de975c60e51/
│   │   │                   │   └── unc.edu.7522ddf3-0d35-4085-9f94-1ca2e38aa804.1541255.rsem.genes.normalized_results
│   │   │                   ├── 5253951e-d078-4c9a-aa86-77883229a86a/
│   │   │                   │   └── unc.edu.66f6da01-b85b-4e29-8059-0bb6a32d709f.1541610.rsem.genes.normalized_results
│   │   │                   ├── 5295b385-6a4f-4476-90ca-85c81c7a968f/
│   │   │                   │   └── unc.edu.8880d24b-a72e-4472-8d14-19e58e0a61ae.1540132.rsem.genes.normalized_results
│   │   │                   ├── 53cb60f9-0c0f-4d58-9c98-39c2b657f1f6/
│   │   │                   │   └── unc.edu.f026a95f-89a7-464f-a8f2-ea036fe1774f.1533771.rsem.genes.normalized_results
│   │   │                   ├── 543b714e-ca1e-434d-a703-e3715e75b665/
│   │   │                   │   └── unc.edu.10bfa2d8-228f-43d8-ae15-1f58c25d1be3.1544894.rsem.genes.normalized_results
│   │   │                   ├── 57c2cc26-5767-4003-9e10-3016e2d3bdd3/
│   │   │                   │   └── unc.edu.616011aa-5aad-4078-85a6-e61f98d83363.1543127.rsem.genes.normalized_results
│   │   │                   ├── 5843988f-3c0b-4c36-8e17-b52d2a9accb8/
│   │   │                   │   └── unc.edu.6b59b1e5-4593-49f9-add7-b41e719d7af6.1541343.rsem.genes.normalized_results
│   │   │                   ├── 5cd0729b-3a3a-4de0-8014-038966f5616b/
│   │   │                   │   └── unc.edu.94f66829-3cef-4af2-9f97-2352ac85efee.2403684.rsem.genes.normalized_results
│   │   │                   ├── 5dc589f1-28f2-4129-b736-ea8b0964df5f/
│   │   │                   │   └── unc.edu.110100d2-bfb8-42d2-875f-9424a8bd2086.1544980.rsem.genes.normalized_results
│   │   │                   ├── 5ebb37b6-0b33-46b9-a14c-f68672c44cc9/
│   │   │                   │   └── unc.edu.3721666c-f46f-4b43-9f5d-b3cf85af176c.1543702.rsem.genes.normalized_results
│   │   │                   ├── 60ac58c0-5731-430d-b775-0a5be6a483f3/
│   │   │                   │   └── unc.edu.2e5a4130-bc62-4986-948b-b741b3fbdc7a.1544090.rsem.genes.normalized_results
│   │   │                   ├── 61c8ed04-0f81-40b4-a757-a50f9e92721b/
│   │   │                   │   └── unc.edu.d722657b-e5b6-4476-94e9-1135ce8aecad.1535571.rsem.genes.normalized_results
│   │   │                   ├── 621796a7-72d4-4131-9d2c-6ee5c4b7ae12/
│   │   │                   │   └── unc.edu.94985059-d992-4f1f-ae67-36cf287f443d.1539984.rsem.genes.normalized_results
│   │   │                   ├── 636714b7-f212-4d41-9016-c97c5604e7cd/
│   │   │                   │   └── unc.edu.28239a0e-9990-49ef-a159-ba63fb078c77.1543931.rsem.genes.normalized_results
│   │   │                   ├── 6370b4c4-4607-4476-a51b-eeac8b8570c1/
│   │   │                   │   └── unc.edu.39b5a7b5-e2ec-442d-94c4-ba938ee79b97.1542468.rsem.genes.normalized_results
│   │   │                   ├── 65d271c0-095a-483e-8a4d-110eb6a53f1c/
│   │   │                   │   └── unc.edu.d29e5a15-6ad2-41f9-b4e8-5c4b0f3fda9e.1537606.rsem.genes.normalized_results
│   │   │                   ├── 661d504a-fbcf-44fa-b4f6-1930ac978229/
│   │   │                   │   └── unc.edu.5d40c2af-b2e9-407c-be1f-780a9071fbe7.1542836.rsem.genes.normalized_results
│   │   │                   ├── 698c106a-7014-4306-b475-cfe357bdbd8f/
│   │   │                   │   └── unc.edu.e50235f8-f8cf-44c8-9d5e-ca5bbbb6291a.1536299.rsem.genes.normalized_results
│   │   │                   ├── 699e06cb-5094-4d40-9e0c-265ccd39ccc2/
│   │   │                   │   └── unc.edu.ca6d5ed3-f6f7-4dde-be24-7652d7dfab16.1539001.rsem.genes.normalized_results
│   │   │                   ├── 6dad3d39-f85c-47fe-989c-9054c088d1a9/
│   │   │                   │   └── unc.edu.2ee686c6-da57-4371-90a9-db02ab6cb278.1544194.rsem.genes.normalized_results
│   │   │                   ├── 6e72263b-9356-46eb-b7f5-3afd19d04f72/
│   │   │                   │   └── unc.edu.d577af6d-d9f1-435d-8429-73b5c5962238.1536803.rsem.genes.normalized_results
│   │   │                   ├── 700cd1ba-cfa1-4a95-83d1-bbfdaecf5986/
│   │   │                   │   └── unc.edu.4d2bc147-bed8-4621-be86-f32559f0ed91.1542532.rsem.genes.normalized_results
│   │   │                   ├── 70d769a1-5335-4013-841f-086d4ea5b300/
│   │   │                   │   └── unc.edu.82d0310c-7bd8-422e-97a7-7e73be8d8a30.1540255.rsem.genes.normalized_results
│   │   │                   ├── 72ef94c4-d9e3-41de-ac3d-74ac62366a57/
│   │   │                   │   └── unc.edu.271ec214-e83b-4fcb-85cf-f35f3c39f0aa.1544713.rsem.genes.normalized_results
│   │   │                   ├── 73c364ce-44df-4d5d-a9e0-46a57956ca10/
│   │   │                   │   └── unc.edu.a344de7b-5980-4612-9d58-1c8058a2bfd9.1539170.rsem.genes.normalized_results
│   │   │                   ├── 7837237e-bd45-4928-8004-0fcab19e1206/
│   │   │                   │   └── unc.edu.56a705f4-fd28-44ff-8a3c-85bc4300c760.1543366.rsem.genes.normalized_results
│   │   │                   ├── 7971e5a9-efa0-475f-a37f-06cd718dfc0b/
│   │   │                   │   └── unc.edu.fbf2f1c0-fb91-4548-8653-68021e6541f9.1532635.rsem.genes.normalized_results
│   │   │                   ├── 799898e4-dee7-4428-a3b3-a386a6bd92f5/
│   │   │                   │   └── unc.edu.04e97d81-96bb-40e7-9e8c-1efb19179a62.1545277.rsem.genes.normalized_results
│   │   │                   ├── 7c2937a3-ddbf-4f48-9fe4-acd572a4ec23/
│   │   │                   │   └── unc.edu.b1019532-963f-4c8e-ba55-b03dea8b5498.1537428.rsem.genes.normalized_results
│   │   │                   ├── 7d0d6ab2-c29e-4007-858b-4766c0e1b238/
│   │   │                   │   └── unc.edu.f5fffae0-0fbe-40f8-93d7-525407048620.1532689.rsem.genes.normalized_results
│   │   │                   ├── 7fa752be-0d51-4918-a6dd-bc1076d23402/
│   │   │                   │   └── unc.edu.689fb14c-d3c5-414f-8c7a-8aa73ebbfc37.1542042.rsem.genes.normalized_results
│   │   │                   ├── 828403b2-a0d3-4fe3-a983-9fc0c07dd45d/
│   │   │                   │   └── unc.edu.f2ab5972-46e6-4d13-bf8e-dffc1dc8a9e9.1533331.rsem.genes.normalized_results
│   │   │                   ├── 83d51263-0346-426e-8b35-1fec12ff3b8a/
│   │   │                   │   └── unc.edu.e454530c-3b94-444c-bd1a-682b6048aa94.1537013.rsem.genes.normalized_results
│   │   │                   ├── 8402365b-79a4-4748-ae70-9e356c1cc90f/
│   │   │                   │   └── unc.edu.2d1481b0-3bdd-4b9e-b1e1-813d0c624c25.1544226.rsem.genes.normalized_results
│   │   │                   ├── 84ed6bfb-b8b1-47b6-aa31-95db12692c9d/
│   │   │                   │   └── unc.edu.5522993c-6439-483c-97a6-843026d5198b.1542029.rsem.genes.normalized_results
│   │   │                   ├── 879e17f0-1115-4127-8287-6ae9dbffda59/
│   │   │                   │   └── unc.edu.67b4bd07-77fd-4595-b2a0-5f3a3a43a221.1541113.rsem.genes.normalized_results
│   │   │                   ├── 8806edc4-addb-4b8b-bc4c-355cbf8c399c/
│   │   │                   │   └── unc.edu.4bd8bbae-7370-43c7-89cb-0fe0028553dd.1541638.rsem.genes.normalized_results
│   │   │                   ├── 8ab0c9d6-d006-4d1c-b7c0-468b08f44bfe/
│   │   │                   │   └── unc.edu.6f9d76f0-ff61-4c58-ab2f-a7c84e9726e9.1540819.rsem.genes.normalized_results
│   │   │                   ├── 8becb41e-2ace-429d-b4cb-45e26d7ed65c/
│   │   │                   │   └── unc.edu.1dd740dc-2752-4511-ac12-45766c8e2737.1544779.rsem.genes.normalized_results
│   │   │                   ├── 916fdf6c-e008-4415-9be2-e8095697277a/
│   │   │                   │   └── unc.edu.8401d72d-a286-4541-b566-c6212ef4c89c.1540249.rsem.genes.normalized_results
│   │   │                   ├── 95321a6a-c6b0-42bd-b60a-cd9b8328ec9e/
│   │   │                   │   └── unc.edu.102a0737-7d27-46b8-a433-4f1bb5300858.1545071.rsem.genes.normalized_results
│   │   │                   ├── 954c898a-b5ae-4fec-880b-890d4a9e037b/
│   │   │                   │   └── unc.edu.23b23702-8e0f-4b4c-ad92-ce7ea44939e6.1544065.rsem.genes.normalized_results
│   │   │                   ├── 973ce0ac-f613-4b99-b2ab-3e2d5548f05f/
│   │   │                   │   └── unc.edu.152afe8c-f67c-4d7c-93ac-e1b7edd56c54.1544649.rsem.genes.normalized_results
│   │   │                   ├── 9815bfe2-bf6d-4a05-9107-778e334dacdc/
│   │   │                   │   └── unc.edu.559a1178-052c-4452-876c-ba2468a3160a.1543346.rsem.genes.normalized_results
│   │   │                   ├── 9c5b8d25-51bd-4be3-918c-1219e671608b/
│   │   │                   │   └── unc.edu.5f19c351-94d4-4164-aa7e-4a0f44640cbb.1542155.rsem.genes.normalized_results
│   │   │                   ├── 9c96849a-86a6-43bb-8601-927a68c77536/
│   │   │                   │   └── unc.edu.66b268a8-8652-4efc-8b2e-cf4ac6e00516.1542556.rsem.genes.normalized_results
│   │   │                   ├── 9cbc854d-1f69-40a1-9c2f-8a715c495524/
│   │   │                   │   └── unc.edu.c6d836ec-710d-4559-ba66-2715f6a55d4c.1538758.rsem.genes.normalized_results
│   │   │                   ├── 9d3dfe99-d16d-4aa5-9415-3cab0ffd2988/
│   │   │                   │   └── unc.edu.2de8f5dd-decd-47f4-856a-bda678ee6ab8.1544304.rsem.genes.normalized_results
│   │   │                   ├── 9e831601-155f-4e31-b4b7-fd42998c0132/
│   │   │                   │   └── unc.edu.777c1ad8-ae6d-4c17-ad59-8b26adb67a1b.1539904.rsem.genes.normalized_results
│   │   │                   ├── 9f16356c-1750-4fb6-80bc-c47d72f005c9/
│   │   │                   │   └── unc.edu.ecd3ecba-4d25-4995-91df-e076f0cbe2bc.1534635.rsem.genes.normalized_results
│   │   │                   ├── 9f646e6b-45ce-4170-9d91-28b7ea1a6910/
│   │   │                   │   └── unc.edu.faadb03e-20bc-4308-a86b-2bdb6aad8a23.1532177.rsem.genes.normalized_results
│   │   │                   ├── a0c266ce-1d4c-490c-bcd3-342b8e6c1373/
│   │   │                   │   └── unc.edu.39580733-5ff1-43a1-b9fd-53b6f6e879bd.1544051.rsem.genes.normalized_results
│   │   │                   ├── a1b10d2c-757b-400f-98e4-b8cfa83ba4c5/
│   │   │                   │   └── unc.edu.8dd4d862-180f-479b-8d87-0eaae4fc9236.1539924.rsem.genes.normalized_results
│   │   │                   ├── a3d5de70-5394-4370-8ca2-f6d9320e63d5/
│   │   │                   │   └── unc.edu.67068dc6-6270-4e7b-a857-3008dadc2d59.1541836.rsem.genes.normalized_results
│   │   │                   ├── a7363d76-fdbd-4163-b34c-2fdec99b1ea8/
│   │   │                   │   └── unc.edu.df36c4af-258e-4cfb-9550-d3580d097547.1537625.rsem.genes.normalized_results
│   │   │                   ├── a7c6a6b3-33c1-4e6d-88af-5af02c43f488/
│   │   │                   │   └── unc.edu.aba4cde6-c407-4cfb-922e-5b4402aae727.2403444.rsem.genes.normalized_results
│   │   │                   ├── a7e6d601-3aa7-4238-b1df-c154aaf60811/
│   │   │                   │   └── unc.edu.cf7e2358-7542-4381-90f4-782663ddc63a.1537371.rsem.genes.normalized_results
│   │   │                   ├── a851c9c7-15a6-447d-a29a-f12819e6855c/
│   │   │                   │   └── unc.edu.4df60632-cb31-4c0f-8929-d18129668469.1543072.rsem.genes.normalized_results
│   │   │                   ├── a895d249-3119-43c3-82f5-291fc36bf8b6/
│   │   │                   │   └── unc.edu.ea85c76f-5334-495d-9615-d3f503c0d088.1535074.rsem.genes.normalized_results
│   │   │                   ├── a9049e21-37c4-4954-80d7-8ccca25e4837/
│   │   │                   │   └── unc.edu.75ed138d-252f-4179-b93f-4ae8eb2524ee.1541072.rsem.genes.normalized_results
│   │   │                   ├── a98cb466-a188-4deb-a58c-03020c5255a2/
│   │   │                   │   └── unc.edu.63f989ff-890b-4db8-973f-ab675912635f.1542128.rsem.genes.normalized_results
│   │   │                   ├── aa0eec52-8805-42df-813a-b3b8a6c02db4/
│   │   │                   │   └── unc.edu.065048d0-ecbf-4de2-b12a-55e52f8d1279.1545237.rsem.genes.normalized_results
│   │   │                   ├── ab4f97e3-abfd-416c-94aa-1b19af44b1a6/
│   │   │                   │   └── unc.edu.8604df30-9170-41e2-8dfb-2feb813807ac.1540475.rsem.genes.normalized_results
│   │   │                   ├── abeef750-e92f-4f60-9bed-9f7e85f0af27/
│   │   │                   │   └── unc.edu.0ffc2552-883a-4e8f-9f76-4f37dfce3278.1545073.rsem.genes.normalized_results
│   │   │                   ├── ac2cd0ae-a224-43a6-860b-19f927e1456a/
│   │   │                   │   └── unc.edu.ebadf417-08e8-4e89-bc8b-f7a74b0fc781.1534266.rsem.genes.normalized_results
│   │   │                   ├── ac7dc275-f20f-43c2-bd44-27f3687fac9e/
│   │   │                   │   └── unc.edu.23c2c2d5-d035-4875-a109-aa0a4c34c20e.1544506.rsem.genes.normalized_results
│   │   │                   ├── ad18662f-5f4e-440d-b795-229246b3ec98/
│   │   │                   │   └── unc.edu.c893538c-d12c-4dd1-a3fd-cba6a847c14e.1537703.rsem.genes.normalized_results
│   │   │                   ├── ae2a032e-283d-4d17-8b52-b8c46fe7dc4d/
│   │   │                   │   └── unc.edu.6ced4dca-5999-4063-90e9-6ba1851ab054.1541766.rsem.genes.normalized_results
│   │   │                   ├── b1d53f55-7a42-4c58-bda4-cbfc2c90a196/
│   │   │                   │   └── unc.edu.6f54bcd2-99e9-4f9b-a9b8-6963b922f783.1541470.rsem.genes.normalized_results
│   │   │                   ├── b2ab7cce-2e16-4d60-a49b-fd06e84a45e9/
│   │   │                   │   └── unc.edu.cea49633-24f0-48c4-b2d0-fed47d5364e6.1536809.rsem.genes.normalized_results
│   │   │                   ├── b7011bdc-3781-4fe9-a7b5-91d1ff19bfa5/
│   │   │                   │   └── unc.edu.6287ca85-ad7b-4656-9c6e-8c3c44833462.1541728.rsem.genes.normalized_results
│   │   │                   ├── b766a1db-4aa9-432e-9d98-849a4f115ead/
│   │   │                   │   └── unc.edu.88958da0-8140-466c-8183-bf4995529b16.1540180.rsem.genes.normalized_results
│   │   │                   ├── b7e2b266-97ce-4fb9-af9c-e78aa2dfdf38/
│   │   │                   │   └── unc.edu.98937e70-6d2c-4057-b5ef-e01d0006486f.1540102.rsem.genes.normalized_results
│   │   │                   ├── bb99c7ea-e3ec-434a-95e5-e7834f1cede5/
│   │   │                   │   └── unc.edu.febcf9af-1a79-4234-a095-4efa3c3aa2bc.1532748.rsem.genes.normalized_results
│   │   │                   ├── bc30c903-74ea-4abd-be23-44f73d351415/
│   │   │                   │   └── unc.edu.b337121c-9821-4644-820e-b8c477f6c38a.1539094.rsem.genes.normalized_results
│   │   │                   ├── bc32c876-6ba4-472d-a9d1-af76da67022b/
│   │   │                   │   └── unc.edu.e64a2789-9b0e-41ca-9447-b17d8968f4cd.1535414.rsem.genes.normalized_results
│   │   │                   ├── bd00a4fa-1690-4d06-8c6a-d41e405852bf/
│   │   │                   │   └── unc.edu.48a2ae8d-a9c4-4d06-8619-ad49502b3721.1543325.rsem.genes.normalized_results
│   │   │                   ├── be11e67f-6251-45af-a4f9-a637a6bd7c7d/
│   │   │                   │   └── unc.edu.e48c8261-5e7b-4cbe-95ed-8a7d1c356d70.1536380.rsem.genes.normalized_results
│   │   │                   ├── befa7283-6d1c-4f5c-807d-9bc62ed3e72a/
│   │   │                   │   └── unc.edu.6870c515-1f0e-4481-82bf-7cde66292278.1541238.rsem.genes.normalized_results
│   │   │                   ├── c0d60224-7368-4621-bbcc-a66b86b4407d/
│   │   │                   │   └── unc.edu.5cb5c8ef-740d-4f9d-b081-107a3e4390f6.1542246.rsem.genes.normalized_results
│   │   │                   ├── c24f03cc-f75f-4f9f-b4f9-4d0261f8b1ec/
│   │   │                   │   └── unc.edu.f2a757d2-2574-4840-88ea-5ffd09d0103c.1533877.rsem.genes.normalized_results
│   │   │                   ├── c3485622-d671-4efd-95db-065bb30f3820/
│   │   │                   │   └── unc.edu.d52e7499-1325-4506-ae20-bd683d37318e.1537025.rsem.genes.normalized_results
│   │   │                   ├── c391cb63-f763-4d00-a641-8e68c7393cea/
│   │   │                   │   └── unc.edu.06fcbf45-4b5a-4c5a-976e-9b7bf57479dd.1545160.rsem.genes.normalized_results
│   │   │                   ├── c4205e91-7e7a-4aeb-96fe-758a298209bf/
│   │   │                   │   └── unc.edu.d8164b02-4b3c-454d-945b-2838edb1b5b1.1535735.rsem.genes.normalized_results
│   │   │                   ├── c6332aad-f888-41cb-93aa-a4791b33c1cc/
│   │   │                   │   └── unc.edu.69336246-eb91-424b-9cd2-8cbdcf7adfe7.1540976.rsem.genes.normalized_results
│   │   │                   ├── c65ad0e5-bd64-4b15-8b1c-b11949e515e6/
│   │   │                   │   └── unc.edu.d5a281fd-c004-477f-af62-c55fe20f1dee.1538274.rsem.genes.normalized_results
│   │   │                   ├── c6fc1852-81eb-484b-9911-1f058ef471d4/
│   │   │                   │   └── unc.edu.9146c99d-fa73-433d-8460-f2587ce674bb.1539645.rsem.genes.normalized_results
│   │   │                   ├── c76131e0-2cff-489f-b8b6-4e72d0faa58f/
│   │   │                   │   └── unc.edu.e623cbaa-d406-4c82-b9e8-21acfc9e630a.1535093.rsem.genes.normalized_results
│   │   │                   ├── c7fcd219-81ae-4879-8e0f-25e998787007/
│   │   │                   │   └── unc.edu.b147bdcd-f5b6-41be-bca4-3ef7efcb9ec6.1540710.rsem.genes.normalized_results
│   │   │                   ├── c82c9547-d2fc-49da-962c-b6efa2d62b8b/
│   │   │                   │   └── unc.edu.eab1e09d-1ca3-484d-95d8-9fd5fa857f3d.1535423.rsem.genes.normalized_results
│   │   │                   ├── c8dbfac8-d1e5-4195-b76b-743ca1c0464e/
│   │   │                   │   └── unc.edu.60003a9d-4fed-4131-839d-13d72f6d9c28.1542987.rsem.genes.normalized_results
│   │   │                   ├── cdf18c04-47f3-42b1-9ff9-4f7c77cee1b2/
│   │   │                   │   └── unc.edu.7a904020-5345-4d1f-8493-8dd07d45faa3.1540665.rsem.genes.normalized_results
│   │   │                   ├── cdf8362e-78cd-4b97-a0a4-61e68c20397d/
│   │   │                   │   └── unc.edu.051cda00-0007-4e35-9044-fd0c03c8ed4b.1545352.rsem.genes.normalized_results
│   │   │                   ├── ce72ea3f-ec9f-4469-9084-1ab4d3daddaf/
│   │   │                   │   └── unc.edu.6251a0df-d7ff-4a1b-9aa6-7d12ea04bd2c.1541980.rsem.genes.normalized_results
│   │   │                   ├── d17e28e6-e414-4d37-9967-62e223cd5cb7/
│   │   │                   │   └── unc.edu.0cbec58e-f95e-4c60-a85d-210dc56bdf3c.1545137.rsem.genes.normalized_results
│   │   │                   ├── d261ba1c-66b6-4975-b3fc-0336b393a7ed/
│   │   │                   │   └── unc.edu.e99614f9-51d8-4096-83af-8effd5266881.1535024.rsem.genes.normalized_results
│   │   │                   ├── d7eb60ce-a52e-4794-afe6-8ba74c3b744d/
│   │   │                   │   └── unc.edu.26200b50-c40c-4e09-89c4-083b873bcf25.1544812.rsem.genes.normalized_results
│   │   │                   ├── dae1f8d5-19c1-44d9-9c76-f7b78ee41f78/
│   │   │                   │   └── unc.edu.95e1423d-5a12-49cf-841d-1521593a874f.1539936.rsem.genes.normalized_results
│   │   │                   ├── dc5f9d09-0812-4346-aad6-122574dce6ad/
│   │   │                   │   └── unc.edu.098b8eb6-2e55-4628-8eca-e1068e74d9e6.1545218.rsem.genes.normalized_results
│   │   │                   ├── dd6d785e-6286-4b01-9aa8-0631ba5295f7/
│   │   │                   │   └── unc.edu.a748d693-fae0-4fb6-ab1e-a347b4e9b7d2.1539373.rsem.genes.normalized_results
│   │   │                   ├── dd8eabad-fd1d-4052-bd97-d95c357b418e/
│   │   │                   │   └── unc.edu.9b9ba1cf-67be-4d74-90c5-fd86f4a5317f.1539513.rsem.genes.normalized_results
│   │   │                   ├── e238a46f-ebfa-48ab-b1ad-0012973863fe/
│   │   │                   │   └── unc.edu.adafa15c-5834-427e-bc93-24d3c4f775a9.1539317.rsem.genes.normalized_results
│   │   │                   ├── e2e58c27-2693-4709-a941-0fe9b2ded69b/
│   │   │                   │   └── unc.edu.6245a56e-eec6-4e7b-b9ef-bf0d1a3dcf36.1542454.rsem.genes.normalized_results
│   │   │                   ├── e3558dc0-3088-4ed4-8467-0676b7981aac/
│   │   │                   │   └── unc.edu.049eb561-95ee-4584-b9eb-0715c80e0a95.1545368.rsem.genes.normalized_results
│   │   │                   ├── e3b09881-501e-4d2a-ad30-58bdce5f01fd/
│   │   │                   │   └── unc.edu.eb455c55-74ac-4303-b149-475ffe21e3c6.1534310.rsem.genes.normalized_results
│   │   │                   ├── e3c921c2-3d65-49ed-9551-5b0b506496a6/
│   │   │                   │   └── unc.edu.4e8e7e01-95a7-4724-bbc5-91436d80d0f7.1542732.rsem.genes.normalized_results
│   │   │                   ├── e4036fae-6f6f-4061-85c8-bd9c8843ea5f/
│   │   │                   │   └── unc.edu.d694ad12-0ae4-4bee-9f7f-0c6adf5bf09d.1538298.rsem.genes.normalized_results
│   │   │                   ├── e4497d09-08ab-43f9-a726-d4f608a6eee0/
│   │   │                   │   └── unc.edu.c0c714ac-aa74-4702-8c3b-704f6e549276.1538464.rsem.genes.normalized_results
│   │   │                   ├── e45862b2-1144-4ad3-8d6e-6ea799c20a6d/
│   │   │                   │   └── unc.edu.49280503-5136-4c10-8e42-061abbb6fa05.1543573.rsem.genes.normalized_results
│   │   │                   ├── e771caaf-aa86-4264-bc8c-730e5f1aa67b/
│   │   │                   │   └── unc.edu.6a85fda0-3e2d-4bd8-ba44-5ce821c39504.1540438.rsem.genes.normalized_results
│   │   │                   ├── e9473bc9-c6dc-4fd8-b79c-4e74ed257c9a/
│   │   │                   │   └── unc.edu.a7433808-7fb3-4909-92ae-2d74b32886b0.1539383.rsem.genes.normalized_results
│   │   │                   ├── ea3b51e2-48e4-440a-88c5-218c82915813/
│   │   │                   │   └── unc.edu.2b467bcc-e33f-4209-92c0-dcff843027ea.1544577.rsem.genes.normalized_results
│   │   │                   ├── eed90292-6958-4ca6-bb39-e808ab9ffe68/
│   │   │                   │   └── unc.edu.76ad0a38-a2a2-4533-8baf-5f94c0c59a02.1540944.rsem.genes.normalized_results
│   │   │                   ├── f08280b7-c6b4-4192-87c6-7ff6b6107cb9/
│   │   │                   │   └── unc.edu.68de1b36-afde-4fb9-bd5a-38037cd7df11.1540622.rsem.genes.normalized_results
│   │   │                   ├── f0f38c45-e69e-4e62-add2-833d227706fc/
│   │   │                   │   └── unc.edu.9afb2af1-ea34-41ad-8a5d-5f24df2aba0b.1539889.rsem.genes.normalized_results
│   │   │                   ├── f27dbcfd-13e7-4309-b74a-a1c68522ac4c/
│   │   │                   │   └── unc.edu.ff4d089b-8f65-46f1-b3bc-dab1271725fb.1531870.rsem.genes.normalized_results
│   │   │                   ├── f27fb706-3d2c-4d99-9fc1-57d5f9274cc7/
│   │   │                   │   └── unc.edu.497fcc98-1eeb-4696-88eb-22fc99627695.1542705.rsem.genes.normalized_results
│   │   │                   ├── f3675736-ce1d-44c6-9024-918cc188f69d/
│   │   │                   │   └── unc.edu.57e8e300-2cd1-4af1-a84c-02e1d3fc3555.1542961.rsem.genes.normalized_results
│   │   │                   ├── f764f722-688c-406f-886f-70d1ec7a6ece/
│   │   │                   │   └── unc.edu.11a0e909-11e7-40f3-be04-5bd2143ee6ab.1545093.rsem.genes.normalized_results
│   │   │                   ├── f77bb46c-0ef4-44ea-a9bd-713f12ff4e37/
│   │   │                   │   └── unc.edu.3053a2c5-4426-4d56-85b0-50567f1e81c9.1544454.rsem.genes.normalized_results
│   │   │                   ├── fa272d89-6271-48be-8a6a-913a8f6d8d58/
│   │   │                   │   └── unc.edu.addc558d-d718-4f50-a0dc-92f7c3341f61.1538872.rsem.genes.normalized_results
│   │   │                   └── fcaa30b7-1480-43d1-8a05-9ee011c03ef8/
│   │   │                       └── unc.edu.3a5d8c95-260e-471a-bdf8-2fa489a069d8.1542770.rsem.genes.normalized_results
│   │   ├── MANIFEST.txt
│   │   ├── NAMESPACE
│   │   ├── R/
│   │   │   └── kmeans.R
│   │   ├── add_dataset.js
│   │   ├── assign_tool_access.js
│   │   ├── convert_tcga_molecular_v2.R
│   │   ├── default_genesets.json
│   │   ├── default_tools.json
│   │   ├── gene_minTSS_scaled.json
│   │   ├── initiate_db.js
│   │   ├── man/
│   │   │   └── kmeans.Rd
│   │   ├── oncoscape.Rproj
│   │   ├── tcga_clinical_lookup.json
│   │   ├── tcga_conversion.js
│   │   ├── tcga_molecular_lookup.json
│   │   └── tool_requirements.json
│   └── oncoscape_0.1.0.tgz
├── docker-entrypoint.sh
├── docker-kong.template
├── docker-nginx.template
├── docker-supervisord.conf
├── documentation/
│   ├── .babelrc
│   ├── .bowerrc
│   ├── .editorconfig
│   ├── .gitattributes
│   ├── .gitignore
│   ├── .yo-rc.json
│   ├── app/
│   │   ├── index.html
│   │   ├── markerspatients.html
│   │   ├── partials/
│   │   │   ├── footer.p
│   │   │   └── header.p
│   │   ├── pathways.html
│   │   ├── pca.html
│   │   ├── robots.txt
│   │   ├── scripts/
│   │   │   ├── oncoscape.js
│   │   │   └── oncoscapeHomepage.js
│   │   ├── spreadsheet.html
│   │   ├── styles/
│   │   │   └── oncoscape.css
│   │   ├── survival.html
│   │   └── timelines.html
│   ├── bower.json
│   ├── dist/
│   │   ├── index.html
│   │   ├── markerspatients.html
│   │   ├── pathways.html
│   │   ├── pca.html
│   │   ├── robots.txt
│   │   ├── scripts/
│   │   │   ├── oncoscape.js
│   │   │   └── oncoscapeHomepage.js
│   │   ├── spreadsheet.html
│   │   ├── styles/
│   │   │   └── oncoscape.css
│   │   ├── survival.html
│   │   └── timelines.html
│   ├── gulpfile.babel.js
│   ├── markerspatients.html
│   ├── package.json
│   └── test/
│       ├── index.html
│       └── spec/
│           └── test.js
├── logos.psd
├── ms-bu.js
├── server/
│   ├── HugoGenes.json
│   ├── add_dataset.js
│   ├── app.db.js
│   ├── app.js
│   ├── app.middleware.js
│   ├── app.permissions.js
│   ├── app.query.js
│   ├── app.routes.js
│   ├── fileUpload.js
│   ├── kong_configure.js
│   ├── models/
│   │   ├── file.js
│   │   ├── irb.js
│   │   ├── lookup.js
│   │   ├── permission.js
│   │   ├── project.js
│   │   ├── publicprojects.js
│   │   └── user.js
│   ├── package.json
│   ├── test.js
│   └── tool_requirements.json
└── tcga_molecular_lookup.json

================================================
FILE CONTENTS
================================================

================================================
FILE: .dockerignore
================================================
client/node_modules/*
node/node_modules/*
kong/node_modules/*
.git
client/dist/*
README.md
INSTALL.md
DOCKER.md
CONTRIBUTING.md
cheatsheet.md
LICENSE


================================================
FILE: .gitattributes
================================================
# Set the default behavior, in case people don't have core.autocrlf set

* text=auto

# Text files that must have LF on checkout

*.sh  text eol=lf
*.R   text eol=lf
*.html   text eol=lf

# Files that are truly binary

*.RData binary
*.pdf   binary
*.png   binary
*.gif   binary
*.jpg   binary

================================================
FILE: .gitignore
================================================
# Bower + Gulp Node_modules
server/node_modules/
client/node_modules/
client/bower_components/
client/coverage/
client/.sass-cache/
client/.idea/
client/.tmp/
server/mongo/

# Logs and databases and uploaded files #
######################
*.log
*.out
nohup.out
uploads/
dataPackages/RawData
Oncoscape/inst/unitTests/test_OncoDev14_BenchMark*
Oncoscape/inst/scripts/markersAndSamples/log.*
Oncoscape/inst/scripts/datasets/log.*
Oncoscape/inst/scripts/apps/oncoscape/nohup.out
uploads/
#
# Packages #
############
# it's better ot unpack these files and commit the raw source
# git has its own built in compression methods
*.zip
*.tar
*.dmg
*.jar

# OS generated files #
######################
.tmp
.DS_Store
.DS_Store?
._*
.Trashes
ehthumbs.db
Thumbs.db

# Installation files #
######################
.setupR*
Rlibs
.Rhistory
.Rapp.history
.Rproj.user
cpu/oncoscape/kong_configure.js
.env


================================================
FILE: .vscode/launch.json
================================================
{
    // Use IntelliSense to learn about possible Node.js debug attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "type": "node",
            "request": "launch",
            "name": "Launch Program",
            "program": "${file}"
        }
    ]
}

================================================
FILE: CONTRIBUTING.md
================================================
# How to Contribute

We love Pull Requests! Your contributions help drive development.

## Getting Started

Thanks for your interest in supporting our mission - to develop software that addresses needs in cancer biology and precision medicine.
Both software development and cancer research require multi-disciplinary expertise and collaboration, and we welcome any and all help whether
it be submitting issues, writing docs, making code changes, or even linking/developing entire features. 
If you haven't already, start by signing up for a [GitHub account](https://github.com/signup/free).


## Getting Started

You can clone this repository locally from GitHub using the "Clone in Desktop" 
button from the main project site, or run this command in the Git Shell:

`git clone https://github.com/FredHutch/Oncoscape.git Oncoscape`

Or if you're using SSH

`git clone git@github.com:FredHutch/oncoscape.git Oncoscape`

If you want to make contributions to the project, 
[forking the project](https://help.github.com/articles/fork-a-repo) is the 
easiest way to do this. You can then clone down your fork instead:

`git clone https://github.com/MY-USERNAME-HERE/Oncoscape.git Oncoscape`

Or if you're using SSH

`git clone git@github.com:MY-USERNAME-HERE/Oncoscape.git Oncoscape`

After doing that, follow the [Installation instructions](INSTALL.md) to install, test, and run the software package.

Check out our [cheatsheet](cheatsheet.md) for tips and tricks for some common git commands.

### How is the codebase organized?

Oncoscape uses websockets to pass JSON messages between web browsers and computational servers using the [chinook protocol](https://github.com/oncoscape/chinook).

The `Oncoscape` library is a R package that connects 3 major components: 

 - **Data** - molecular profiles, sequencing results, clinical histories, regulatory networks, etc
 - **Analysis** - computational methods and tools
 - **Display** - where to present the data - e.g. a website using JS, JQuery, HTML, CSS, etc
 
Currently, we use R packages to store data and perform computational analysis.  

Each dataset is an instance of the `SttrDataPackage` class, with molecular data organized into simple data.frames and matrices and 
the clinical histories represented by the `PatientHistory` class. The unit tests for each dataset are a great way to get familiar 
with the accessor functions - eg [dataPackages/TCGAgbm/inst/scripts/test_TCGAgbm.R](dataPackages/TCGAgbm/inst/unitTests/test_TCGAgbm.R)

For computationally intensive  or complex analyses, there are separate R packages for performing these functions.  These are stored 
in [analysisPackages](analysisPackages/) and include methods such as PCA (principle component analysis) and 
PLSR (partial least squares regression).  Have a bioconductor or other tool you'd like to include?  Add it here!

Creating interactive and coupled displays of data and analysis is a major focus of Oncoscape.  Each feature (shown as tabs)
can be individually developed and loosely coupled for users to pass information among tools using the point-and-click interface.
In the current incarnation, each tab/feature contains a widget.html and Module.js file that includes all the necessary HTML and Javascript
code to interpret and display information.  Features can be developed and deployed individually using the makefile within that folder 
-eg [Oncoscape/inst/scripts/pca/makefile](Oncoscape/inst/scripts/pca/makefile) or added to a collection of tabs through the `apps` directory [Oncoscape/inst/scripts/apps/](Oncoscape/inst/scripts/apps/oncoscape/widget.html).


### What needs to be done?

We have a [`help wanted`](https://github.com/FredHutch/oncoscape/issues?labels=help%20wanted&state=open)
tag on our issue tracker to indicate tasks which contributors can pick up.

If you've found something you'd like to contribute to, leave a comment in the issue
so everyone is aware.


## Making Changes

When you're ready to make a change, 
[create a branch](https://help.github.com/articles/fork-a-repo#create-branches) 
off the `develop` branch. We use `develop` as the working branch for the 
repository with the most recent contributions and the `master` branch as our production version.  We found these two
links very helpful [develop/master branching model](http://nvie.com/posts/a-successful-git-branching-model/)
and [github workflow](https://www.atlassian.com/git/tutorials/comparing-workflows)

If you make focused commits (instead of one monolithic commit) and have descriptive
commit messages, this will help speed up the review process.

Oncoscape relies on testing to ensure existing behaviour is unchanged.  This can be easily checked
through the `>make test` command in the root directory.  If you're adding new features, please add some 
tests to your code and include it in the testing heirarchy so your code is safe and secure.


### Submitting Changes

You can publish your branch from GitHub for Windows, or run this command from
the Git Shell:

`git push origin MY-BRANCH-NAME`

Once your changes are ready to be reviewed, publish the branch to GitHub and
[open a pull request](https://help.github.com/articles/using-pull-requests) 
against it.

Some tips with pull requests to help the process:

 - Contribute your work-in-progress by adding the `[WIP]` prefix to the title.  This way we can give feedback early and facilitate the inclusion of your updates.
 - use [checklists](https://github.com/blog/1375-task-lists-in-gfm-issues-pulls-comments) 
   to indicate the tasks which need to be done, so everyone knows how close you are to done.
 - add comments to the PR about things that are unclear or you would like suggestions on

Don't forget to mention in the pull request description which issue/issues are 
being addressed.

Some things that will increase the chance that your pull request is accepted.

* Follow existing code conventions. 
* Include unit tests that would otherwise fail without your code, but pass with it.
* Update the documentation, the surrounding one, examples elsewhere, guides, 
  whatever is affected by your contribution

# Additional Resources

* [General GitHub documentation](http://help.github.com/)


================================================
FILE: DOCKER.md
================================================
# **Running and Developing Oncoscape with Docker** 
---

1. [What is Docker?](#1-what-is-docker)
2. [Installing Docker on Mac OS X](#2-installing-docker-on-mac-os-x)
3. [Installing Docker on Windows](#3-installing-docker-on-windows)
4. [Installing Docker on Linux](#4-installing-docker-on-linux)
5. [Running the Oncoscape Docker container](#5-running-the-oncoscape-docker-container)
6. [Developing Oncoscape inside a Docker container](#6-developing-oncoscape-inside-a-docker-container)

## 1. What is Docker?

Docker is an open platform for building, shipping and running applications. It allows development teams to produce self-contained application containers that include not only the application but an environment, configuration and all required dependencies. If a Docker container based application runs on your development workstation, it will run exactly the same on any Docker powered systems without modification and without worrying about any application specific dependencies.  

Development teams using Docker can simply provide the container to operations teams to deploy, or to users of the application and be assured that the application will run.

Docker is not just for ease of deployment, it's also provides developers with a clean, isolated environment to consistently code, build and test their application on their development workstation.

## 2. Installing Docker on Mac OS X

Running a Docker environment on Mac OS X requires Mac OS X 10.8 "Mountain Lion" or higher.

To get docker running on a Mac follow the instructions below: 

- Go to the Docker Toolbox Mac OS page: https://www.docker.com/docker-toolbox
- Download the Mac OS X version of the installer
- Double-click on the downloaded installer (DockerToolbox-1.x.pkg)
- Following the install wizard to install the Docker-Toolbox
- See http://docs.docker.com/mac/step_one/ for more detailed install instructions

After the Docker Toolbox as been successfully installed, open a terminal and issue the following command: 

```bash
docker-machine ls
```
The output of the above command should look like this:

```
NAME      ACTIVE   DRIVER       STATE     URL   SWARM
default            virtualbox   Stopped         
```
This show you the name and state of the default Docker VM. You'll need to start up this VM before proceeding as follows:  

```bash
docker-machine start default
```

After the above command returns the Docker VM should be up and running. To configure your docker client to communicate with this new environment issue the following command in a terminal shell:

```bash
eval "$(docker-machine env default)"
```

Now let's make sure it's working by running a small "hello world" container with the following command:

```bash
docker run --rm hello-world
```

If everything works as expected you should, the output of the above command should like something like this:

```
$ docker run --rm hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
b901d36b6f2f: Pull complete 
0a6ba66e537a: Pull complete 
Digest: sha256:517f03be3f8169d84711c9ffb2b3235a4d27c1eb4ad147f6248c8040adb93113
Status: Downloaded newer image for hello-world:latest

Hello from Docker.
This message shows that your installation appears to be working correctly.
```

If your output looks like the above, then you're Mac is ready to use Docker.

## 3. Installing Docker on Windows

Running a Docker environment on Microsoft Windows requires Windows 7, 8.x, or 10

To get docker running on on Windows, follow the instructions below: 

- Go to the Docker Toolbox page: https://www.docker.com/docker-toolbox
- Download the Microsoft Windows version of the installer
- Double-click on the downloaded installer (DockerToolbox-1.x.exe)
- Following the install wizard to install the Docker-Toolbox
- See http://docs.docker.com/windows/step_one/ for more detailed install instructions

After the Docker Toolbox has been successfully installed, double click on the "Docker Quickstart Terminal" shortcut that was created during the installation process. This will open a new terminal Window and start the default Docker VM (this may take a minute or two, especially the first time). When it's finished starting the terminal will look like the following:

```
                        ##         .
                  ## ## ##        ==
               ## ## ## ## ##    ===
           /"""""""""""""""""\___/ ===
      ~~~ {~~ ~~~~ ~~~ ~~~~ ~~~ ~ /  ===- ~~~
           \______ o           __/
             \    \         __/
              \____\_______/

docker is configured to use the default machine with IP 192.168.99.100
For help getting started, check out the docs at https://docs.docker.com
NOTE: When using interactive commands, prepend winpty. Examples: 'winpty docker run -it ...', 'winpty docker exec -it ...'.

MINGW64 ~
```

Now lets make sure it's working by running a small "hello world" container with the following command:

```bash
docker run --rm hello-world
```

If everything works as expected you should, the output of the above command should like something like this:

```
$ docker run --rm hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
b901d36b6f2f: Pull complete 
0a6ba66e537a: Pull complete 
Digest: sha256:517f03be3f8169d84711c9ffb2b3235a4d27c1eb4ad147f6248c8040adb93113
Status: Downloaded newer image for hello-world:latest

Hello from Docker.
This message shows that your installation appears to be working correctly.
```

If you're output looks like the above, then your Windows system is ready to use Docker

I you get an error like "An error occurred trying to connect..." you probably need update the docker environment variables in the Docker terminal with the command below and try again:

```bash
eval "$(docker-machine env --shell=bash default)"
```

## 4. Installing Docker on Linux

Docker runs natively on Linux so you won't have to install an enabling technology like Docker Machine or Boot2Docker as is required on Windows and Mac OS platforms. 

Docker requires a 64-bit version regardless and your kernel must be 3.10 at minimum. Linux distributions such as Ubuntu 14.04+ and CentOS 7 are ready to run docker. To pull images from the the Docker Hub you'll need docker version 1.6 or higher.

Docker can be installed using your distributions package manager. For example the following will install Docker 1.6 on Ubuntu 14.04: 

```bash
sudo apt-get -y update
sudo apt-get -y install docker.io
```

As an alternative to using our distributions packages (above method), you can install the very latest version of Docker by getting Docker packages directly from the Docker project. For example, the commands below will get the very latest version of Docker running on an Ubuntu 14.04 system:    

```bash
sudo apt-key adv --keyserver hkp://pgp.mit.edu:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
sudo echo "deb https://apt.dockerproject.org/repo ubuntu-trusty main"  > /etc/apt/sources.list.d/docker.list
sudo apt-get -y update
sudo apt-get -y purge lxc-docker*
sudo apt-cache -y policy docker-engine
sudo apt-get -y install docker-engine
```

After you've installed Docker on your Linux system following one of the above methods, make sure it's working by running a small "hello world" container with the following command:

```bash
sudo docker run --rm hello-world
```

If everything works as expected the output of the above command should look something like this:


```
$ sudo docker run hello-world
Unable to find image 'hello-world' locally
Pulling repository hello-world
975b84d108f1: Download complete 
3f12c794407e: Download complete 

Hello from Docker.
This message shows that your installation appears to be working correctly.
```

***NOTE:*** to avoid having to use "sudo" for every docker command, you and add your account to the local "docker" group (create it if it doesn't already exist).

## 5. Running the Oncoscape Docker container

This section covers running Oncoscape in a container for either test/demo purposes or deploying on a production server. If you just want to get Oncoscape up and running quickly to check it out, then this section is for you. If you want to build and develop Oncoscape in a container, skip this section and move on to [Developing Oncoscape inside a Docker container](#6-developing-oncoscape-inside-a-docker-container).

Before you can run Oncoscape, we first need to pull it down to the system we are going to run it on. This is accomplished with the following command:

```
docker pull fredhutch/oncoscape:develop
```
The above command will take a while as it downloads all the layers of the Oncoscape image. When it's done, you can run the "develop" branch version of Oncoscape with the following command:

```
docker run -d --name oncoscapedev -p 80:80 fredhutch/oncoscape:develop  
```

The above command will create a new container running the development version of Oncoscape. It will name the container "oncoscapedev" and will bind tcp port 80 inside the container to tcp port 80 on the Docker system.

If you'd rather run the stable version (master branch) of Oncoscape 

```
docker pull oncoscape
docker run -d --name oncoscapemaster -p 80:7777 fredhutch/oncoscape:latest  
```

To access the application just open a web browser (Chrome is currently the only supported browser) and navigate to the application depending on how you are running Docker: 

- **Local Linux workstation**: http://localhost
- **Remote Linux server**: http://removeservername
- **Local Mac OS X or Windows system**: you'll first need to determine the IP address of the Docker Machine with the command "*docker-machine ip default*", then point your browser to this IP address for example http://192.168.99.100 (replace 192.168.99.100 with the IP of your Docker Machine VM).

You can see which containers are running on your system with the "docker ps" command:
```
$ docker ps
CONTAINER ID    IMAGE                        STATUS       PORTS                NAMES
6cfad3997f0d    fredhutch/oncoscape:develop  Up 3 hours   0.0.0.0:80->80/tcp   oncoscapedev        
```

You can stop/start containers that you've created with the 'docker stop/start *containername*' commands as follows:

```
$ docker stop oncoscapedev
oncoscapedev
$ docker start oncoscapedev
oncoscapedev
```
If you want to delete a container, first stop it then delete with the 'docker rm *containername*' command as follows:

```
$ docker stop oncoscapedev
oncoscapedev
$ docker rm oncoscapedev
oncoscapedev
```


## 6. Developing Oncoscape inside a Docker container

In the previous section we simply ran Oncoscape in a container, but Docker is not just for running and deploying applications, it’s great for development too. Using Docker for development provides consistent, clean development environment. Each build can be in a fresh environment without any dependencies on your development workstation or clashes/contamination with your workstation. All developers can use the same OS, same system libraries, same language runtime, no matter what host OS they are using (even Windows). The development environment is the exact same as the production environment. You only need Docker to develop; you don’t need to install a bunch of language environments, libraries and tools on your machine. 

A Docker container recipe for the Oncoscape development environment is located at https://github.com/FredHutch/Oncoscape-dev-environment

To use the Oncoscape development container use 'git' to clone the Oncoscape development container repository to your Docker enabled development system, build a container image and then run it. Here are the commands required to create a container image tagged "oncodev" (you can name it something else if you would like): 

```bash
git clone https://github.com/FredHutch/Oncoscape-dev-environment.git
cd Oncoscape-dev-environment
docker build -t oncodev .
```
The build process will take several minutes to complete. When the build is finished, there will be a new container image registered with your Docker engine named "oncodev" (or whatever you named it). Check to see that the new image was registered with the following command:

```bash
docker images
```
The above command will list the images registered with your docker engine and will look similar to the following:

```
REPOSITORY      TAG         IMAGE ID        CREATED         VIRTUAL SIZE
oncodev         latest      31ee6c745277    2 minutes ago    751.8 MB
```

Now that we have an image registered, you are ready to start making development environment containers. To use the development environment, create and run a container from the image you built and registered. Here is an example (assuming you named your image 'oncodev'):

```bash
docker run -ti -p 80:80 --name myoncodev01 --hostname myoncodev01 oncodev
```

Paramater Description:
  - '--name myoncodev01' flag tags this container (choose whatever name you like). 
  - '--hostname myoncodev01' sets the hostname inside the container to match the container instance name. The bash prompt inside the container will include the provided hostname to make it clear what environment you are currently in. 
  - '-p 80:80' flag tells docker that you want to bind TCP port 80 inside your container to TCP port 80 on your Docker-Machine VM (or directly to the host on Linux).

After you execute the above command you'll be dropped to a bash shell inside this new container. You are now root in an isolated Linux environment that has everything that you need to build and run Oncoscape. The container is empty so you'll need to clone the Oncoscape repo (git is included in the container) and install/build/configure/run as you like. You can create new branches, edit code (vim, emacs and nano are provided), commit and push to github right from inside the container. 

***NOTE:*** Windows users only. While the "Docker Quick Start Terminal" is fine for managing, starting, and stopping containers, you'll want to use either the standard command prompt (cmd.exe) or Powershell consoles for interactive work such editing files inside the container. Note that when using 'vi' in a container via cmd.exe or Powershell consoles, the arrow keys do not work and you'll need to use the traditional 'hjkl' keys to move the cursor: 'h'=left, 'j'=down, 'k'=up, 'l'=right.

Setup the environment variables required by docker for the shell of your choice as shown below:

***Classic command prompt (cmd.exe)***
```
FOR /f "tokens=*" %i IN ('docker-machine.exe env --shell=cmd default') DO %i
```
***Powershell***
```
docker-machine.exe env --shell=powershell default | Invoke-Expression
```

After you build and run Oncoscape in a container you'll likely want to point your browser at it. If you are running docker on Linux, you simply point your browser at either http://localhost or http://servername if it's running on a remote server. If you are running Docker on Mac OS X or Windows you first have to determine the IP address of the Docker Machine VM. To do so you'll need to run the following command:

```bash
docker-machine ip default
```

The output of the above command will be a private IP address that you can only reach from your development workstation. After you have this IP address simply point you browser at it with the desired port; "http://192.168.99.100" for example.

#### Stopping and starting your containers

To stop your development container, simply exit the bash shell with the "exit" command. This will stop the container and drop you back on your workstation’s command line. You can see all of your containers running and stopped with the following command:

```bash
docker ps -a
```
The output of the above command will look similar to the following:

```
CONTAINER ID   IMAGE      COMMAND   CREATED             STATUS                 NAMES
3bb2bc400dd3   oncodev    "bash"    19 minutes ago      Exited 7 seconds ago   myoncodev01               
```

If you want to start your container again and enter it, simply run the following commands replacing "myoncodev01" with the name of your container:

```bash
docker start myoncodev01
docker attach myoncodev01
```
This will drop you back into an instance of bash running inside your container. 

You're not limited to a single container, you can have as many different Oncoscape development environments on your system as you need.

#### Accessing data outside of your container

In the examples above we cloned the Oncocape repository inside of the container. If you'd rather clone it to your workstation directly and access it from inside your container you can use the Docker 'volumes' feature. For example let's say you have cloned the Oncoscape repo to /Users/myuser/Oncoscape and want to fire up a container and access this external data from inside your container. To accomplish this you'll need to use the '-v' flag when creating a new container and tell it what folder on your workstation you want to be mounted inside the container. Here is an example:

```bash
docker run -ti -p 80:80 -v /Users/myuser/Oncoscape:/opt/Oncoscape --name myoncodev02 --hostname myoncodev02 oncodev
```

After running the above command, you should see that the '/User/myuser/Oncoscape' folder on your development workstation is now mounted read/write to '/opt/Oncoscape' inside this new container. You can change to this directory and use git just like you do on your workstation. It's worth noting that any modifications to this directory or files it contains inside the container, is directly modifying the files outside of your container. This approach can save you a lot of time and disk space by not having to clone the repo inside each container, but if you need true isolation between each conatiner, this might not be the right approach.

***NOTE:*** Windows users can't specify the local folder they want mounted in the traditional *'C:/xyz'* format. You'll need to use the *'/c/xzy'* format. For example *"-v /c/Users/myuser/Oncoscape:/opt/Oncoscape"* will mount 'C:\Users\myuser\Oncoscape' on your workstation to *'/opt/Oncoscape'* inside the container.

#### Cleaning up unneeded containers and images

To delete a container you don't need any longer, it must first be stopped if it's currently running then use the following command replacing "myoncodev03" with the name of the container you wish to delete:

```
docker rm myoncodev03
```

To delete the oncodev image that you built, first there must be no containers running or stopped that are based off of it. When there are no containers created from the oncodev image remaining you can delete this image with the following command replacing "oncodev" with name of the image you created:

```
docker rmi oncodev
```

You can see which containers are on you workstation with the "docker ps -a" command and which images are on your workstation with the "docker images" command.


================================================
FILE: Dockerfile
================================================
# Use Ubuntu 14.04 as the base container
FROM ubuntu:16.04

# Add Standard Packages + Verification Key
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 51716619E084DAB9
RUN apt-get -y -qq update && apt-get -y -qq install \
	netcat \
	openssl \
	apache2 \
	apache2-utils \
	libpcre3 \
	dnsmasq \
	procps \
	apt-transport-https \
	make \
	gcc \
	g++ \
	libxml2 \
	libxml2-dev \
	python-pip \
	curl \
	nano \
	supervisor \
	gunicorn \
	python3-pip \
	zlib1g-dev \
	libpng-dev \
	git \
	python3 \ 
	python3-dev \
	python3-pip \
	python3-numpy \
	python3-scipy \ 
	python-imaging
	
# Install Kong
RUN curl -sL https://github.com/Mashape/kong/releases/download/0.9.4/kong-0.9.4.trusty_all.deb > kong-0.9.4.trusty_all.deb  && \
	dpkg -i kong-0.9.4.trusty_all.deb

# Install Node 6.x + PM2
RUN curl -sL https://deb.nodesource.com/setup_6.x | bash -
RUN apt-get -y -qq install nodejs
RUN npm install -g pm2

# Install OpenCPU
#RUN \
#  apt-get update && \
#  apt-get -y dist-upgrade && \
#  apt-get install -y software-properties-common && \
#  add-apt-repository -y ppa:opencpu/opencpu-1.6 && \
#  apt-get update && \
#  apt-get install -y opencpu 
#RUN truncate -s 0 /etc/apache2/ports.conf
#RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf


# Create Application User
RUN useradd -u 7534 -m -d /home/sttrweb -c "sttr web application" sttrweb && \
	mkdir /home/sttrweb/Oncoscape && \ 
	mkdir /home/sttrweb/Oncoscape/uploads && \
	chmod +x /home/sttrweb/Oncoscape/uploads && \
	# mkdir /home/sttrweb/UploadTool && \
	mkdir /home/sttrweb/Oncoscape/cache && \
	mkdir /var/log/nginx/


# Python Server
WORKDIR /home/sttrweb/Oncoscape/
RUN git clone https://github.com/Oncoscape/oncoscape_algorithm_wrapper.git
WORKDIR oncoscape_algorithm_wrapper
RUN pip3 install -r requirements.txt


# Upload Tool
WORKDIR /home/sttrweb/Oncoscape/
RUN git clone https://github.com/Oncoscape/NG4-Data-Upload.git

# Install Client Code
WORKDIR /home/sttrweb/Oncoscape/
COPY client-build /home/sttrweb/Oncoscape/client
COPY documentation/dist /home/sttrweb/Oncoscape/documentation

# Install Server Code
COPY server /home/sttrweb/Oncoscape/server
WORKDIR /home/sttrweb/Oncoscape/server/
RUN npm install

# Install R Package
#COPY cpu/oncoscape_0.1.0.tgz /home/sttrweb/Oncoscape/oncoscape_0.1.0.tgz
#WORKDIR /home/sttrweb/Oncoscape/
#RUN R CMD INSTALL oncoscape_0.1.0.tgz --library=/usr/local/lib/R/site-library
#RUN echo "r <- getOption('repos'); r['CRAN'] <- 'http://cran.us.r-project.org'; options(repos = r);" > ~/.Rprofile
#RUN Rscript -e "install.packages(c('devtools','ggplot2','gridSVG','d3heatmap','pls'))"

# Copy Config Files
WORKDIR /home/sttrweb/Oncoscape/
COPY /docker-kong.template /home/sttrweb/Oncoscape/
COPY /docker-nginx.template /home/sttrweb/Oncoscape/
COPY /docker-supervisord.conf /home/sttrweb/Oncoscape/
COPY /docker-entrypoint.sh /home/sttrweb/Oncoscape/

# Expose Ports
EXPOSE 80 7946 8000 8001 8003 8004 10001
EXPOSE 7946/udp

# Fire It Up
RUN chmod +x /home/sttrweb/Oncoscape/docker-entrypoint.sh
ENTRYPOINT ["/home/sttrweb/Oncoscape/docker-entrypoint.sh"]

================================================
FILE: HugoGenes.json
================================================
[
  "A1BG",
  "A1BG-AS1",
  "A1CF",
  "A2M",
  "A2M-AS1",
  "A2ML1",
  "A2ML1-AS1",
  "A2ML1-AS2",
  "A2MP1",
  "A3GALT2",
  "A4GALT",
  "A4GNT",
  "A12M1",
  "A12M2",
  "A12M3",
  "A12M4",
  "AAAS",
  "AABT",
  "AACS",
  "AACSP1",
  "AADAC",
  "AADACL2",
  "AADACL2-AS1",
  "AADACL3",
  "AADACL4",
  "AADACP1",
  "AADAT",
  "AAED1",
  "AAGAB",
  "AAK1",
  "AAMDC",
  "AAMP",
  "AANAT",
  "AAR2",
  "AARD",
  "AARS",
  "AARS2",
  "AARSD1",
  "AARSP1",
  "AASDH",
  "AASDHPPT",
  "AASS",
  "AATBC",
  "AATF",
  "AATK",
  "AATK-AS1",
  "AAVS1",
  "ABALON",
  "ABAT",
  "ABCA1",
  "ABCA2",
  "ABCA3",
  "ABCA4",
  "ABCA5",
  "ABCA6",
  "ABCA7",
  "ABCA8",
  "ABCA9",
  "ABCA9-AS1",
  "ABCA10",
  "ABCA11P",
  "ABCA12",
  "ABCA13",
  "ABCA17P",
  "ABCB1",
  "ABCB4",
  "ABCB5",
  "ABCB6",
  "ABCB7",
  "ABCB8",
  "ABCB9",
  "ABCB10",
  "ABCB10P1",
  "ABCB10P3",
  "ABCB10P4",
  "ABCB11",
  "ABCC1",
  "ABCC2",
  "ABCC3",
  "ABCC4",
  "ABCC5",
  "ABCC5-AS1",
  "ABCC6",
  "ABCC6P1",
  "ABCC6P2",
  "ABCC8",
  "ABCC9",
  "ABCC10",
  "ABCC11",
  "ABCC12",
  "ABCC13",
  "ABCD1",
  "ABCD1P1",
  "ABCD1P2",
  "ABCD1P3",
  "ABCD1P4",
  "ABCD1P5",
  "ABCD2",
  "ABCD3",
  "ABCD4",
  "ABCE1",
  "ABCF1",
  "ABCF2",
  "ABCF2P1",
  "ABCF2P2",
  "ABCF3",
  "ABCG1",
  "ABCG2",
  "ABCG4",
  "ABCG5",
  "ABCG8",
  "ABHD1",
  "ABHD2",
  "ABHD3",
  "ABHD4",
  "ABHD5",
  "ABHD6",
  "ABHD8",
  "ABHD10",
  "ABHD11",
  "ABHD11-AS1",
  "ABHD11-AS2",
  "ABHD12",
  "ABHD12B",
  "ABHD13",
  "ABHD14A",
  "ABHD14A-ACY1",
  "ABHD14B",
  "ABHD15",
  "ABHD15-AS1",
  "ABHD16A",
  "ABHD16B",
  "ABHD17A",
  "ABHD17AP1",
  "ABHD17AP3",
  "ABHD17AP4",
  "ABHD17AP5",
  "ABHD17AP6",
  "ABHD17AP7",
  "ABHD17AP8",
  "ABHD17AP9",
  "ABHD17B",
  "ABHD17C",
  "ABHD18",
  "ABI1",
  "ABI1P1",
  "ABI2",
  "ABI3",
  "ABI3BP",
  "ABL1",
  "ABL2",
  "ABLIM1",
  "ABLIM2",
  "ABLIM3",
  "ABO",
  "ABR",
  "ABRA",
  "ABRACL",
  "ABT1",
  "ABT1P1",
  "ABTB1",
  "ABTB2",
  "ACAA1",
  "ACAA2",
  "ACACA",
  "ACACB",
  "ACAD8",
  "ACAD9",
  "ACAD10",
  "ACAD11",
  "ACADL",
  "ACADM",
  "ACADS",
  "ACADSB",
  "ACADVL",
  "ACAD",
  "ACAN",
  "ACAP1",
  "ACAP2",
  "ACAP2-IT1",
  "ACAP3",
  "ACAT1",
  "ACAT2",
  "ACBD3",
  "ACBD4",
  "ACBD5",
  "ACBD6",
  "ACBD7",
  "ACCS",
  "ACCSL",
  "ACD",
  "ACE",
  "ACE2",
  "ACE3P",
  "ACER1",
  "ACER2",
  "ACER3",
  "ACHE",
  "ACIN1",
  "ACKR1",
  "ACKR2",
  "ACKR3",
  "ACKR4",
  "ACLS",
  "ACLY",
  "ACMG",
  "ACMSD",
  "ACO1",
  "ACO2",
  "ACOD1",
  "ACOT1",
  "ACOT2",
  "ACOT4",
  "ACOT6",
  "ACOT7",
  "ACOT8",
  "ACOT9",
  "ACOT11",
  "ACOT12",
  "ACOT13",
  "ACOX1",
  "ACOX2",
  "ACOX3",
  "ACOXL",
  "ACP1",
  "ACP2",
  "ACP5",
  "ACP6",
  "ACP7",
  "ACPP",
  "ACPT",
  "ACR",
  "ACRBP",
  "ACRV1",
  "ACSBG1",
  "ACSBG2",
  "ACSF2",
  "ACSF3",
  "ACSL1",
  "ACSL3",
  "ACSL4",
  "ACSL5",
  "ACSL6",
  "ACSM1",
  "ACSM2A",
  "ACSM2B",
  "ACSM3",
  "ACSM4",
  "ACSM5",
  "ACSM5P1",
  "ACSM6",
  "ACSS1",
  "ACSS2",
  "ACSS3",
  "ACTA1",
  "ACTA2",
  "ACTA2-AS1",
  "ACTB",
  "ACTBL2",
  "ACTBP1",
  "ACTBP2",
  "ACTBP3",
  "ACTBP4",
  "ACTBP5",
  "ACTBP6",
  "ACTBP7",
  "ACTBP8",
  "ACTBP9",
  "ACTBP10",
  "ACTBP11",
  "ACTBP12",
  "ACTBP13",
  "ACTBP14",
  "ACTC1",
  "ACTG1",
  "ACTG1P1",
  "ACTG1P2",
  "ACTG1P3",
  "ACTG1P4",
  "ACTG1P6",
  "ACTG1P7",
  "ACTG1P8",
  "ACTG1P9",
  "ACTG1P10",
  "ACTG1P11",
  "ACTG1P12",
  "ACTG1P13",
  "ACTG1P14",
  "ACTG1P15",
  "ACTG1P16",
  "ACTG1P17",
  "ACTG1P18",
  "ACTG1P19",
  "ACTG1P20",
  "ACTG1P21",
  "ACTG1P22",
  "ACTG1P23",
  "ACTG1P24",
  "ACTG2",
  "ACTL4",
  "ACTL5",
  "ACTL6A",
  "ACTL6B",
  "ACTL7A",
  "ACTL7B",
  "ACTL8",
  "ACTL9",
  "ACTL10",
  "ACTN1",
  "ACTN1-AS1",
  "ACTN2",
  "ACTN3",
  "ACTN4",
  "ACTN4P1",
  "ACTN4P2",
  "ACTP1",
  "ACTR1A",
  "ACTR1B",
  "ACTR2",
  "ACTR3",
  "ACTR3B",
  "ACTR3BP1",
  "ACTR3BP2",
  "ACTR3BP3",
  "ACTR3BP4",
  "ACTR3BP5",
  "ACTR3BP6",
  "ACTR3C",
  "ACTR3P1",
  "ACTR3P2",
  "ACTR3P3",
  "ACTR5",
  "ACTR6",
  "ACTR6P1",
  "ACTR8",
  "ACTR10",
  "ACTRT1",
  "ACTRT2",
  "ACTRT3",
  "ACVR1",
  "ACVR1B",
  "ACVR1C",
  "ACVR2A",
  "ACVR2B",
  "ACVR2B-AS1",
  "ACVRL1",
  "ACY1",
  "ACY3",
  "ACYP1",
  "ACYP2",
  "AD5",
  "ADA",
  "ADAD1",
  "ADAD1P1",
  "ADAD1P2",
  "ADAD2",
  "ADAL",
  "ADAM1A",
  "ADAM1B",
  "ADAM2",
  "ADAM3A",
  "ADAM3B",
  "ADAM5",
  "ADAM6",
  "ADAM7",
  "ADAM8",
  "ADAM9",
  "ADAM10",
  "ADAM11",
  "ADAM12",
  "ADAM12-OT1",
  "ADAM15",
  "ADAM17",
  "ADAM18",
  "ADAM19",
  "ADAM20",
  "ADAM20P1",
  "ADAM20P2",
  "ADAM20P3",
  "ADAM21",
  "ADAM21P1",
  "ADAM22",
  "ADAM23",
  "ADAM24P",
  "ADAM28",
  "ADAM29",
  "ADAM30",
  "ADAM32",
  "ADAM33",
  "ADAMDEC1",
  "ADAMTS1",
  "ADAMTS2",
  "ADAMTS3",
  "ADAMTS4",
  "ADAMTS5",
  "ADAMTS6",
  "ADAMTS7",
  "ADAMTS7P1",
  "ADAMTS7P3",
  "ADAMTS7P4",
  "ADAMTS8",
  "ADAMTS9",
  "ADAMTS9-AS1",
  "ADAMTS9-AS2",
  "ADAMTS10",
  "ADAMTS12",
  "ADAMTS13",
  "ADAMTS14",
  "ADAMTS15",
  "ADAMTS16",
  "ADAMTS17",
  "ADAMTS18",
  "ADAMTS19",
  "ADAMTS19-AS1",
  "ADAMTS20",
  "ADAMTSL1",
  "ADAMTSL2",
  "ADAMTSL3",
  "ADAMTSL4",
  "ADAMTSL4-AS1",
  "ADAMTSL5",
  "ADAP1",
  "ADAP2",
  "ADAR",
  "ADARB1",
  "ADARB2",
  "ADARB2-AS1",
  "ADAT1",
  "ADAT2",
  "ADAT3",
  "ADCK1",
  "ADCK2",
  "ADCK5",
  "ADCP1",
  "ADCY1",
  "ADCY2",
  "ADCY3",
  "ADCY4",
  "ADCY5",
  "ADCY6",
  "ADCY7",
  "ADCY8",
  "ADCY9",
  "ADCY10",
  "ADCY10P1",
  "ADCYAP1",
  "ADCYAP1R1",
  "ADD1",
  "ADD2",
  "ADD3",
  "ADD3-AS1",
  "ADFN",
  "ADGB",
  "ADGRA1",
  "ADGRA1-AS1",
  "ADGRA2",
  "ADGRA3",
  "ADGRB1",
  "ADGRB2",
  "ADGRB3",
  "ADGRD1",
  "ADGRD2",
  "ADGRE1",
  "ADGRE2",
  "ADGRE3",
  "ADGRE4P",
  "ADGRE5",
  "ADGRF1",
  "ADGRF2",
  "ADGRF3",
  "ADGRF4",
  "ADGRF5",
  "ADGRF5P1",
  "ADGRF5P2",
  "ADGRG1",
  "ADGRG2",
  "ADGRG3",
  "ADGRG4",
  "ADGRG5",
  "ADGRG6",
  "ADGRG7",
  "ADGRL1",
  "ADGRL2",
  "ADGRL3",
  "ADGRL3-AS1",
  "ADGRL4",
  "ADGRV1",
  "ADH1A",
  "ADH1B",
  "ADH1C",
  "ADH4",
  "ADH5",
  "ADH5P1",
  "ADH5P2",
  "ADH5P3",
  "ADH5P4",
  "ADH6",
  "ADH7",
  "ADHFE1",
  "ADI1",
  "ADI1P1",
  "ADI1P2",
  "ADI1P3",
  "ADIG",
  "ADIPOQ",
  "ADIPOQ-AS1",
  "ADIPOR1",
  "ADIPOR1P1",
  "ADIPOR1P2",
  "ADIPOR2",
  "ADIRF",
  "ADIRF-AS1",
  "ADK",
  "ADM",
  "ADM2",
  "ADM5",
  "ADNP",
  "ADNP-AS1",
  "ADNP2",
  "ADO",
  "ADORA1",
  "ADORA2A",
  "ADORA2A-AS1",
  "ADORA2B",
  "ADORA2BP1",
  "ADORA2L1",
  "ADORA2L2",
  "ADORA3",
  "ADPGK",
  "ADPGK-AS1",
  "ADPRH",
  "ADPRHL1",
  "ADPRHL2",
  "ADPRM",
  "ADRA1A",
  "ADRA1B",
  "ADRA1D",
  "ADRA2A",
  "ADRA2B",
  "ADRA2C",
  "ADRB1",
  "ADRB2",
  "ADRB3",
  "ADRM1",
  "ADSL",
  "ADSS",
  "ADSSL1",
  "ADTRP",
  "ADT",
  "AEBP1",
  "AEBP2",
  "AEN",
  "AES",
  "AF8T",
  "AFA",
  "AFAP1",
  "AFAP1-AS1",
  "AFAP1L1",
  "AFAP1L2",
  "AFD1",
  "AFDN",
  "AFDN-AS1",
  "AFF1",
  "AFF2",
  "AFF2-IT1",
  "AFF3",
  "AFF4",
  "AFG3L1P",
  "AFG3L2",
  "AFG3L2P1",
  "AFM",
  "AFMID",
  "AFP",
  "AFTPH",
  "AGA",
  "AGAP1",
  "AGAP1-IT1",
  "AGAP2",
  "AGAP2-AS1",
  "AGAP3",
  "AGAP4",
  "AGAP5",
  "AGAP6",
  "AGAP7P",
  "AGAP9",
  "AGAP10P",
  "AGAP11",
  "AGAP12P",
  "AGAP13P",
  "AGAP14",
  "AGBL1",
  "AGBL1-AS1",
  "AGBL2",
  "AGBL3",
  "AGBL4",
  "AGBL4-IT1",
  "AGBL5",
  "AGBL5-AS1",
  "AGBL5-IT1",
  "AGER",
  "AGFG1",
  "AGFG2",
  "AGGF1",
  "AGGF1P1",
  "AGGF1P2",
  "AGGF1P3",
  "AGGF1P4",
  "AGGF1P5",
  "AGGF1P6",
  "AGGF1P7",
  "AGGF1P8",
  "AGGF1P9",
  "AGGF1P10",
  "AGK",
  "AGKP1",
  "AGL",
  "AGMAT",
  "AGMO",
  "AGMX2",
  "AGO1",
  "AGO2",
  "AGO3",
  "AGO4",
  "AGPAT1",
  "AGPAT2",
  "AGPAT3",
  "AGPAT4",
  "AGPAT4-IT1",
  "AGPAT5",
  "AGPAT5P1",
  "AGPS",
  "AGR2",
  "AGR3",
  "AGRN",
  "AGRP",
  "AGT",
  "AGTPBP1",
  "AGTR1",
  "AGTR2",
  "AGTRAP",
  "AGTRL2",
  "AGXT",
  "AGXT2",
  "AHCTF1",
  "AHCTF1P1",
  "AHCY",
  "AHCYL1",
  "AHCYL2",
  "AHCYP1",
  "AHCYP2",
  "AHCYP3",
  "AHCYP4",
  "AHCYP5",
  "AHCYP6",
  "AHCYP7",
  "AHCYP8",
  "AHDC1",
  "AHI1",
  "AHNAK",
  "AHNAK2",
  "AHR",
  "AHRR",
  "AHSA1",
  "AHSA2",
  "AHSG",
  "AHSP",
  "AIC",
  "AICDA",
  "AIDA",
  "AIF1",
  "AIF1L",
  "AIFM1",
  "AIFM1P1",
  "AIFM2",
  "AIFM3",
  "AIG1",
  "AIG1P1",
  "AIH3",
  "AIM1",
  "AIM1L",
  "AIM2",
  "AIMP1",
  "AIMP1P1",
  "AIMP1P2",
  "AIMP2",
  "AIP",
  "AIPL1",
  "AIRE",
  "AIRN",
  "AIS1",
  "AIS2",
  "AIS3",
  "AJAP1",
  "AJUBA",
  "AK1",
  "AK2",
  "AK2P1",
  "AK2P2",
  "AK3",
  "AK3P2",
  "AK3P3",
  "AK3P4",
  "AK3P5",
  "AK3P6",
  "AK4",
  "AK4P1",
  "AK4P2",
  "AK4P3",
  "AK4P4",
  "AK4P5",
  "AK4P6",
  "AK5",
  "AK6",
  "AK6P1",
  "AK6P2",
  "AK7",
  "AK8",
  "AK9",
  "AKAIN1",
  "AKAP1",
  "AKAP2",
  "AKAP3",
  "AKAP4",
  "AKAP5",
  "AKAP6",
  "AKAP7",
  "AKAP8",
  "AKAP8L",
  "AKAP8P1",
  "AKAP9",
  "AKAP10",
  "AKAP11",
  "AKAP11-IT1",
  "AKAP12",
  "AKAP13",
  "AKAP14",
  "AKAP17A",
  "AKAP17BP",
  "AKIP1",
  "AKIRIN1",
  "AKIRIN1P1",
  "AKIRIN1P2",
  "AKIRIN2",
  "AKIRIN2-AS1",
  "AKIRIN2P1",
  "AKNA",
  "AKNAD1",
  "AKR1A1",
  "AKR1B1",
  "AKR1B1P1",
  "AKR1B1P2",
  "AKR1B1P3",
  "AKR1B1P4",
  "AKR1B1P5",
  "AKR1B1P6",
  "AKR1B1P7",
  "AKR1B1P8",
  "AKR1B10",
  "AKR1B10P1",
  "AKR1B10P2",
  "AKR1B15",
  "AKR1C1",
  "AKR1C2",
  "AKR1C3",
  "AKR1C4",
  "AKR1C5P",
  "AKR1C6P",
  "AKR1C7P",
  "AKR1C8P",
  "AKR1D1",
  "AKR1D1P1",
  "AKR1E2",
  "AKR7A2",
  "AKR7A2P1",
  "AKR7A3",
  "AKR7L",
  "AKT1",
  "AKT1S1",
  "AKT2",
  "AKT3",
  "AKT3-IT1",
  "AKTIP",
  "ALAD",
  "ALAS1",
  "ALAS2",
  "ALB",
  "ALCAM",
  "ALDH1A1",
  "ALDH1A2",
  "ALDH1A3",
  "ALDH1B1",
  "ALDH1L1",
  "ALDH1L1-AS1",
  "ALDH1L1-AS2",
  "ALDH1L2",
  "ALDH2",
  "ALDH3A1",
  "ALDH3A2",
  "ALDH3B1",
  "ALDH3B2",
  "ALDH4A1",
  "ALDH5A1",
  "ALDH6A1",
  "ALDH7A1",
  "ALDH7A1P1",
  "ALDH7A1P2",
  "ALDH7A1P3",
  "ALDH7A1P4",
  "ALDH8A1",
  "ALDH9A1",
  "ALDH16A1",
  "ALDH18A1",
  "ALDOA",
  "ALDOAP1",
  "ALDOAP2",
  "ALDOB",
  "ALDOC",
  "ALDRL2",
  "ALDRL5",
  "ALFN1",
  "ALG1",
  "ALG1L",
  "ALG1L2",
  "ALG1L3P",
  "ALG1L5P",
  "ALG1L6P",
  "ALG1L7P",
  "ALG1L8P",
  "ALG1L9P",
  "ALG1L10P",
  "ALG1L11P",
  "ALG1L12P",
  "ALG1L13P",
  "ALG1L14P",
  "ALG1L15P",
  "ALG2",
  "ALG3",
  "ALG3P1",
  "ALG5",
  "ALG6",
  "ALG8",
  "ALG9",
  "ALG9-IT1",
  "ALG10",
  "ALG10B",
  "ALG11",
  "ALG12",
  "ALG13",
  "ALG13-AS1",
  "ALG14",
  "ALK",
  "ALKBH1",
  "ALKBH2",
  "ALKBH3",
  "ALKBH3-AS1",
  "ALKBH4",
  "ALKBH5",
  "ALKBH6",
  "ALKBH7",
  "ALKBH8",
  "ALLC",
  "ALMS1",
  "ALMS1-IT1",
  "ALMS1P1",
  "ALOX5",
  "ALOX5AP",
  "ALOX12",
  "ALOX12-AS1",
  "ALOX12B",
  "ALOX12P1",
  "ALOX12P2",
  "ALOX15",
  "ALOX15B",
  "ALOX15P1",
  "ALOX15P2",
  "ALOXE3",
  "ALOXE3P1",
  "ALPI",
  "ALPK1",
  "ALPK2",
  "ALPK3",
  "ALPL",
  "ALPP",
  "ALPPL1",
  "ALPPL2",
  "ALPPP",
  "ALS2",
  "ALS2CL",
  "ALS2CR11",
  "ALS2CR12",
  "ALS3",
  "ALS5",
  "ALS7",
  "ALX1",
  "ALX3",
  "ALX4",
  "ALYREF",
  "AMACR",
  "AMBN",
  "AMBP",
  "AMBRA1",
  "AMCN",
  "AMD1",
  "AMD1P1",
  "AMD1P2",
  "AMD1P3",
  "AMD1P4",
  "AMDHD1",
  "AMDHD2",
  "AMELX",
  "AMELY",
  "AMER1",
  "AMER2",
  "AMER3",
  "AMFR",
  "AMH",
  "AMHR2",
  "AMIGO1",
  "AMIGO2",
  "AMIGO3",
  "AMLCR2",
  "AMMECR1",
  "AMMECR1-IT1",
  "AMMECR1L",
  "AMMECR1LP1",
  "AMN",
  "AMN1",
  "AMOT",
  "AMOTL1",
  "AMOTL2",
  "AMPD1",
  "AMPD2",
  "AMPD3",
  "AMPH",
  "AMT",
  "AMTN",
  "AMY1A",
  "AMY1B",
  "AMY1C",
  "AMY2A",
  "AMY2B",
  "AMYP1",
  "AMZ1",
  "AMZ2",
  "AMZ2P1",
  "AMZ2P2",
  "AN1",
  "ANAPC1",
  "ANAPC1P1",
  "ANAPC2",
  "ANAPC4",
  "ANAPC5",
  "ANAPC7",
  "ANAPC10",
  "ANAPC10P1",
  "ANAPC11",
  "ANAPC13",
  "ANAPC15",
  "ANAPC16",
  "ANCR",
  "ANG",
  "ANGEL1",
  "ANGEL2",
  "ANGPT1",
  "ANGPT2",
  "ANGPT4",
  "ANGPTL1",
  "ANGPTL2",
  "ANGPTL3",
  "ANGPTL4",
  "ANGPTL5",
  "ANGPTL6",
  "ANGPTL7",
  "ANGPTL8",
  "ANHX",
  "ANIB1",
  "ANIB2",
  "ANIB3",
  "ANIB4",
  "ANK1",
  "ANK2",
  "ANK3",
  "ANKAR",
  "ANKDD1A",
  "ANKDD1B",
  "ANKEF1",
  "ANKFN1",
  "ANKFY1",
  "ANKH",
  "ANKHD1",
  "ANKHD1-EIF4EBP3",
  "ANKIB1",
  "ANKK1",
  "ANKLE1",
  "ANKLE2",
  "ANKMY1",
  "ANKMY2",
  "ANKRA2",
  "ANKRD1",
  "ANKRD2",
  "ANKRD6",
  "ANKRD7",
  "ANKRD9",
  "ANKRD10",
  "ANKRD10-IT1",
  "ANKRD11",
  "ANKRD12",
  "ANKRD13A",
  "ANKRD13B",
  "ANKRD13C",
  "ANKRD13D",
  "ANKRD16",
  "ANKRD17",
  "ANKRD18A",
  "ANKRD18B",
  "ANKRD18CP",
  "ANKRD18DP",
  "ANKRD18EP",
  "ANKRD19P",
  "ANKRD20A1",
  "ANKRD20A2",
  "ANKRD20A3",
  "ANKRD20A4",
  "ANKRD20A5P",
  "ANKRD20A6P",
  "ANKRD20A7P",
  "ANKRD20A8P",
  "ANKRD20A9P",
  "ANKRD20A10P",
  "ANKRD20A11P",
  "ANKRD20A12P",
  "ANKRD20A13P",
  "ANKRD20A14P",
  "ANKRD20A15P",
  "ANKRD20A16P",
  "ANKRD20A17P",
  "ANKRD20A18P",
  "ANKRD20A19P",
  "ANKRD20A20P",
  "ANKRD20A21P",
  "ANKRD22",
  "ANKRD23",
  "ANKRD24",
  "ANKRD26",
  "ANKRD26P1",
  "ANKRD26P2",
  "ANKRD26P3",
  "ANKRD26P4",
  "ANKRD27",
  "ANKRD28",
  "ANKRD29",
  "ANKRD30A",
  "ANKRD30B",
  "ANKRD30BL",
  "ANKRD30BP1",
  "ANKRD30BP2",
  "ANKRD30BP3",
  "ANKRD31",
  "ANKRD33",
  "ANKRD33B",
  "ANKRD33B-AS1",
  "ANKRD33B-IT1",
  "ANKRD34A",
  "ANKRD34B",
  "ANKRD34C",
  "ANKRD34C-AS1",
  "ANKRD35",
  "ANKRD36",
  "ANKRD36B",
  "ANKRD36BP1",
  "ANKRD36BP2",
  "ANKRD36C",
  "ANKRD36P1",
  "ANKRD37",
  "ANKRD39",
  "ANKRD40",
  "ANKRD42",
  "ANKRD44",
  "ANKRD44-IT1",
  "ANKRD45",
  "ANKRD46",
  "ANKRD49",
  "ANKRD50",
  "ANKRD52",
  "ANKRD53",
  "ANKRD54",
  "ANKRD54P1",
  "ANKRD55",
  "ANKRD57P1",
  "ANKRD60",
  "ANKRD61",
  "ANKRD62",
  "ANKRD62P1",
  "ANKRD62P1-PARP4P3",
  "ANKRD63",
  "ANKRD65",
  "ANKRD66",
  "ANKS1A",
  "ANKS1B",
  "ANKS3",
  "ANKS4B",
  "ANKS6",
  "ANKUB1",
  "ANKZF1",
  "ANLN",
  "ANO1",
  "ANO1-AS1",
  "ANO1-AS2",
  "ANO2",
  "ANO3",
  "ANO4",
  "ANO5",
  "ANO6",
  "ANO7",
  "ANO7L1",
  "ANO8",
  "ANO9",
  "ANO10",
  "ANOP1",
  "ANOS1",
  "ANOS2P",
  "ANP32A",
  "ANP32A-IT1",
  "ANP32AP1",
  "ANP32B",
  "ANP32BP1",
  "ANP32BP2",
  "ANP32BP3",
  "ANP32C",
  "ANP32D",
  "ANP32E",
  "ANPEP",
  "ANTP2",
  "ANTP4",
  "ANTXR1",
  "ANTXR2",
  "ANTXRL",
  "ANTXRLP1",
  "ANXA1",
  "ANXA2",
  "ANXA2P1",
  "ANXA2P2",
  "ANXA2P3",
  "ANXA2R",
  "ANXA3",
  "ANXA4",
  "ANXA5",
  "ANXA6",
  "ANXA7",
  "ANXA8",
  "ANXA8L1",
  "ANXA9",
  "ANXA10",
  "ANXA11",
  "ANXA13",
  "AOAH",
  "AOAH-IT1",
  "AOC1",
  "AOC2",
  "AOC3",
  "AOC4P",
  "AOX1",
  "AOX2P",
  "AOX3P",
  "AP1AR",
  "AP1B1",
  "AP1B1P1",
  "AP1B1P2",
  "AP1G1",
  "AP1G2",
  "AP1M1",
  "AP1M2",
  "AP1S1",
  "AP1S2",
  "AP1S2P1",
  "AP1S3",
  "AP2A1",
  "AP2A2",
  "AP2B1",
  "AP2M1",
  "AP2S1",
  "AP3B1",
  "AP3B2",
  "AP3D1",
  "AP3M1",
  "AP3M2",
  "AP3S1",
  "AP3S2",
  "AP4B1",
  "AP4B1-AS1",
  "AP4E1",
  "AP4M1",
  "AP4S1",
  "AP5B1",
  "AP5M1",
  "AP5S1",
  "AP5Z1",
  "APAF1",
  "APBA1",
  "APBA2",
  "APBA3",
  "APBB1",
  "APBB1IP",
  "APBB2",
  "APBB3",
  "APC",
  "APC2",
  "APCDD1",
  "APCDD1L",
  "APCDD1L-AS1",
  "APCS",
  "APEH",
  "APELA",
  "APEX1",
  "APEX2",
  "APH1A",
  "APH1B",
  "API5",
  "API5P1",
  "API5P2",
  "APIP",
  "APITD1-CORT",
  "APLF",
  "APLN",
  "APLNR",
  "APLP1",
  "APLP2",
  "APMAP",
  "APOA1",
  "APOA1-AS",
  "APOA2",
  "APOA4",
  "APOA5",
  "APOB",
  "APOBEC1",
  "APOBEC2",
  "APOBEC3A",
  "APOBEC3AP1",
  "APOBEC3A_B",
  "APOBEC3B",
  "APOBEC3B-AS1",
  "APOBEC3C",
  "APOBEC3D",
  "APOBEC3F",
  "APOBEC3G",
  "APOBEC3H",
  "APOBEC4",
  "APOBER1",
  "APOBR",
  "APOC1",
  "APOC1P1",
  "APOC2",
  "APOC3",
  "APOC4",
  "APOC4-APOC2",
  "APOD",
  "APOE",
  "APOEL1",
  "APOF",
  "APOH",
  "APOL1",
  "APOL2",
  "APOL3",
  "APOL4",
  "APOL5",
  "APOL6",
  "APOLD1",
  "APOM",
  "APOO",
  "APOOL",
  "APOOP1",
  "APOOP2",
  "APOOP3",
  "APOOP4",
  "APOOP5",
  "APOPT1",
  "APP",
  "APPBP2",
  "APPL1",
  "APPL2",
  "APPL",
  "APRT",
  "APTR",
  "APTX",
  "AQP1",
  "AQP2",
  "AQP3",
  "AQP4",
  "AQP4-AS1",
  "AQP5",
  "AQP6",
  "AQP7",
  "AQP7P1",
  "AQP7P2",
  "AQP7P3",
  "AQP7P4",
  "AQP7P5",
  "AQP8",
  "AQP9",
  "AQP10",
  "AQP11",
  "AQP12A",
  "AQP12B",
  "AQR",
  "AR",
  "ARAF",
  "ARAFP1",
  "ARAFP2",
  "ARAFP3",
  "ARAP1",
  "ARAP1-AS1",
  "ARAP1-AS2",
  "ARAP2",
  "ARAP3",
  "ARC",
  "ARCN1",
  "ARCN2",
  "AREG",
  "AREL1",
  "ARF1",
  "ARF1P1",
  "ARF1P2",
  "ARF1P3",
  "ARF3",
  "ARF4",
  "ARF4-AS1",
  "ARF4P1",
  "ARF4P2",
  "ARF4P3",
  "ARF4P4",
  "ARF4P5",
  "ARF5",
  "ARF6",
  "ARFGAP1",
  "ARFGAP2",
  "ARFGAP3",
  "ARFGEF1",
  "ARFGEF2",
  "ARFGEF3",
  "ARFIP1",
  "ARFIP2",
  "ARFRP1",
  "ARG1",
  "ARG2",
  "ARGFX",
  "ARGFXP1",
  "ARGFXP2",
  "ARGLU1",
  "ARHGAP1",
  "ARHGAP4",
  "ARHGAP5",
  "ARHGAP5-AS1",
  "ARHGAP6",
  "ARHGAP8",
  "ARHGAP9",
  "ARHGAP10",
  "ARHGAP11A",
  "ARHGAP11B",
  "ARHGAP12",
  "ARHGAP15",
  "ARHGAP16P",
  "ARHGAP17",
  "ARHGAP18",
  "ARHGAP19",
  "ARHGAP19-SLIT1",
  "ARHGAP20",
  "ARHGAP21",
  "ARHGAP22",
  "ARHGAP22-IT1",
  "ARHGAP23",
  "ARHGAP23P1",
  "ARHGAP24",
  "ARHGAP25",
  "ARHGAP26",
  "ARHGAP26-AS1",
  "ARHGAP26-IT1",
  "ARHGAP27",
  "ARHGAP28",
  "ARHGAP29",
  "ARHGAP30",
  "ARHGAP31",
  "ARHGAP31-AS1",
  "ARHGAP32",
  "ARHGAP33",
  "ARHGAP35",
  "ARHGAP36",
  "ARHGAP39",
  "ARHGAP40",
  "ARHGAP42",
  "ARHGAP42P1",
  "ARHGAP42P2",
  "ARHGAP42P3",
  "ARHGAP42P4",
  "ARHGAP42P5",
  "ARHGAP44",
  "ARHGAP45",
  "ARHGDIA",
  "ARHGDIB",
  "ARHGDIG",
  "ARHGEF1",
  "ARHGEF2",
  "ARHGEF3",
  "ARHGEF3-AS1",
  "ARHGEF4",
  "ARHGEF5",
  "ARHGEF6",
  "ARHGEF7",
  "ARHGEF7-AS1",
  "ARHGEF7-AS2",
  "ARHGEF7-IT1",
  "ARHGEF9",
  "ARHGEF9-IT1",
  "ARHGEF10",
  "ARHGEF10L",
  "ARHGEF11",
  "ARHGEF12",
  "ARHGEF15",
  "ARHGEF16",
  "ARHGEF17",
  "ARHGEF18",
  "ARHGEF19",
  "ARHGEF19-AS1",
  "ARHGEF25",
  "ARHGEF26",
  "ARHGEF26-AS1",
  "ARHGEF28",
  "ARHGEF33",
  "ARHGEF34P",
  "ARHGEF35",
  "ARHGEF37",
  "ARHGEF38",
  "ARHGEF38-IT1",
  "ARHGEF39",
  "ARHGEF40",
  "ARID1A",
  "ARID1B",
  "ARID2",
  "ARID3A",
  "ARID3B",
  "ARID3C",
  "ARID4A",
  "ARID4B",
  "ARID4B-IT1",
  "ARID5A",
  "ARID5B",
  "ARIH1",
  "ARIH2",
  "ARIH2OS",
  "ARIH2P1",
  "ARL1",
  "ARL2",
  "ARL2-SNX15",
  "ARL2BP",
  "ARL2BPP1",
  "ARL2BPP2",
  "ARL2BPP3",
  "ARL2BPP4",
  "ARL2BPP5",
  "ARL2BPP6",
  "ARL2BPP7",
  "ARL2BPP8",
  "ARL2BPP9",
  "ARL2BPP10",
  "ARL3",
  "ARL4A",
  "ARL4AP1",
  "ARL4AP2",
  "ARL4AP3",
  "ARL4AP4",
  "ARL4AP5",
  "ARL4C",
  "ARL4D",
  "ARL5A",
  "ARL5AP1",
  "ARL5AP2",
  "ARL5AP3",
  "ARL5AP4",
  "ARL5B",
  "ARL5C",
  "ARL6",
  "ARL6IP1",
  "ARL6IP1P1",
  "ARL6IP1P2",
  "ARL6IP1P3",
  "ARL6IP4",
  "ARL6IP5",
  "ARL6IP6",
  "ARL8A",
  "ARL8B",
  "ARL9",
  "ARL10",
  "ARL11",
  "ARL13A",
  "ARL13B",
  "ARL14",
  "ARL14EP",
  "ARL14EPL",
  "ARL15",
  "ARL16",
  "ARL17A",
  "ARL17B",
  "ARMC1",
  "ARMC2",
  "ARMC2-AS1",
  "ARMC3",
  "ARMC4",
  "ARMC4P1",
  "ARMC5",
  "ARMC6",
  "ARMC7",
  "ARMC8",
  "ARMC8P1",
  "ARMC9",
  "ARMC10",
  "ARMC10P1",
  "ARMC12",
  "ARMCX1",
  "ARMCX2",
  "ARMCX3",
  "ARMCX3-AS1",
  "ARMCX4",
  "ARMCX5",
  "ARMCX5-GPRASP2",
  "ARMCX6",
  "ARMCX7P",
  "ARMS2",
  "ARMT1",
  "ARNT",
  "ARNT2",
  "ARNTL",
  "ARNTL2",
  "ARNTL2-AS1",
  "ARPC1A",
  "ARPC1B",
  "ARPC2",
  "ARPC3",
  "ARPC3P1",
  "ARPC3P2",
  "ARPC3P3",
  "ARPC3P4",
  "ARPC3P5",
  "ARPC4",
  "ARPC4-TTLL3",
  "ARPC5",
  "ARPC5L",
  "ARPIN",
  "ARPP19",
  "ARPP21",
  "ARPP21-AS1",
  "ARR3",
  "ARRB1",
  "ARRB2",
  "ARRDC1",
  "ARRDC1-AS1",
  "ARRDC2",
  "ARRDC3",
  "ARRDC3-AS1",
  "ARRDC4",
  "ARRDC5",
  "ARSA",
  "ARSB",
  "ARSC2",
  "ARSD",
  "ARSD-AS1",
  "ARSDP1",
  "ARSE",
  "ARSEP1",
  "ARSF",
  "ARSFP1",
  "ARSG",
  "ARSH",
  "ARSI",
  "ARSJ",
  "ARSK",
  "ART1",
  "ART2BP",
  "ART2P",
  "ART3",
  "ART4",
  "ART5",
  "ARTN",
  "ARV1",
  "ARVCF",
  "ARVD3",
  "ARVD4",
  "ARX",
  "AS3MT",
  "ASAH1",
  "ASAH2",
  "ASAH2B",
  "ASAP1",
  "ASAP1-IT1",
  "ASAP1-IT2",
  "ASAP2",
  "ASAP3",
  "ASB1",
  "ASB2",
  "ASB3",
  "ASB4",
  "ASB5",
  "ASB6",
  "ASB7",
  "ASB8",
  "ASB9",
  "ASB9P1",
  "ASB10",
  "ASB11",
  "ASB12",
  "ASB13",
  "ASB14",
  "ASB15",
  "ASB16",
  "ASB16-AS1",
  "ASB17",
  "ASB18",
  "ASCC1",
  "ASCC2",
  "ASCC3",
  "ASCL1",
  "ASCL2",
  "ASCL3",
  "ASCL4",
  "ASCL5",
  "ASD1",
  "ASF1A",
  "ASF1B",
  "ASGR1",
  "ASGR2",
  "ASH1L",
  "ASH1L-AS1",
  "ASH1L-IT1",
  "ASH2L",
  "ASH2LP1",
  "ASIC1",
  "ASIC2",
  "ASIC3",
  "ASIC4",
  "ASIC5",
  "ASIP",
  "ASL",
  "ASLP1",
  "ASMT",
  "ASMTL",
  "ASMTL-AS1",
  "ASNA1",
  "ASNS",
  "ASNSD1",
  "ASNSP1",
  "ASNSP2",
  "ASNSP3",
  "ASNSP4",
  "ASNSP5",
  "ASNSP6",
  "ASPA",
  "ASPDH",
  "ASPG",
  "ASPH",
  "ASPHD1",
  "ASPHD2",
  "ASPM",
  "ASPN",
  "ASPRV1",
  "ASPSCR1",
  "ASRGL1",
  "ASS1",
  "ASS1P1",
  "ASS1P2",
  "ASS1P3",
  "ASS1P4",
  "ASS1P5",
  "ASS1P6",
  "ASS1P7",
  "ASS1P8",
  "ASS1P9",
  "ASS1P10",
  "ASS1P11",
  "ASS1P12",
  "ASS1P13",
  "ASS1P14",
  "ASTE1",
  "ASTL",
  "ASTN1",
  "ASTN2",
  "ASTN2-AS1",
  "ASUN",
  "ASVS1",
  "ASXL1",
  "ASXL2",
  "ASXL3",
  "ASZ1",
  "ATAD1",
  "ATAD2",
  "ATAD2B",
  "ATAD3A",
  "ATAD3B",
  "ATAD3C",
  "ATAD5",
  "ATAT1",
  "ATCAY",
  "ATD",
  "ATE1",
  "ATE1-AS1",
  "ATF1",
  "ATF1P1",
  "ATF2",
  "ATF3",
  "ATF4",
  "ATF4P1",
  "ATF4P2",
  "ATF4P3",
  "ATF4P4",
  "ATF5",
  "ATF6",
  "ATF6B",
  "ATF7",
  "ATF7IP",
  "ATF7IP2",
  "ATG2A",
  "ATG2B",
  "ATG3",
  "ATG3P1",
  "ATG4A",
  "ATG4AP1",
  "ATG4B",
  "ATG4C",
  "ATG4D",
  "ATG5",
  "ATG7",
  "ATG9A",
  "ATG9B",
  "ATG10",
  "ATG10-AS1",
  "ATG10-IT1",
  "ATG12",
  "ATG12P1",
  "ATG12P2",
  "ATG13",
  "ATG14",
  "ATG16L1",
  "ATG16L2",
  "ATG101",
  "ATHS",
  "ATIC",
  "ATL1",
  "ATL2",
  "ATL3",
  "ATM",
  "ATMIN",
  "ATN1",
  "ATOH1",
  "ATOH7",
  "ATOH8",
  "ATOX1",
  "ATP1A1",
  "ATP1A1-AS1",
  "ATP1A2",
  "ATP1A3",
  "ATP1A4",
  "ATP1B1",
  "ATP1B1P1",
  "ATP1B2",
  "ATP1B3",
  "ATP1B3-AS1",
  "ATP1B3P1",
  "ATP1B4",
  "ATP2A1",
  "ATP2A1-AS1",
  "ATP2A2",
  "ATP2A3",
  "ATP2B1",
  "ATP2B2",
  "ATP2B2-IT1",
  "ATP2B2-IT2",
  "ATP2B3",
  "ATP2B4",
  "ATP2C1",
  "ATP2C2",
  "ATP3",
  "ATP4A",
  "ATP4B",
  "ATP5A1",
  "ATP5A1P1",
  "ATP5A1P2",
  "ATP5A1P3",
  "ATP5A1P4",
  "ATP5A1P5",
  "ATP5A1P7",
  "ATP5A1P8",
  "ATP5A1P10",
  "ATP5B",
  "ATP5BL2",
  "ATP5BP1",
  "ATP5C1",
  "ATP5C1P1",
  "ATP5D",
  "ATP5E",
  "ATP5EP1",
  "ATP5EP2",
  "ATP5F1",
  "ATP5F1P1",
  "ATP5F1P2",
  "ATP5F1P3",
  "ATP5F1P4",
  "ATP5F1P5",
  "ATP5F1P6",
  "ATP5F1P7",
  "ATP5G1",
  "ATP5G1P1",
  "ATP5G1P2",
  "ATP5G1P3",
  "ATP5G1P4",
  "ATP5G1P5",
  "ATP5G1P6",
  "ATP5G1P7",
  "ATP5G1P8",
  "ATP5G2",
  "ATP5G2P1",
  "ATP5G2P2",
  "ATP5G2P3",
  "ATP5G2P4",
  "ATP5G3",
  "ATP5H",
  "ATP5HP1",
  "ATP5HP2",
  "ATP5HP3",
  "ATP5HP4",
  "ATP5I",
  "ATP5J",
  "ATP5J2",
  "ATP5J2-PTCD1",
  "ATP5J2LP",
  "ATP5J2P2",
  "ATP5J2P3",
  "ATP5J2P4",
  "ATP5J2P5",
  "ATP5J2P6",
  "ATP5JP1",
  "ATP5L",
  "ATP5L2",
  "ATP5LP1",
  "ATP5LP2",
  "ATP5LP3",
  "ATP5LP4",
  "ATP5LP5",
  "ATP5LP6",
  "ATP5LP7",
  "ATP5LP8",
  "ATP5O",
  "ATP5S",
  "ATP5SL",
  "ATP6AP1",
  "ATP6AP1L",
  "ATP6AP2",
  "ATP6V1A",
  "ATP6V1A2",
  "ATP6V1B1",
  "ATP6V1B1-AS1",
  "ATP6V1B2",
  "ATP6V1C1",
  "ATP6V1C2",
  "ATP6V1D",
  "ATP6V1E1",
  "ATP6V1E1P1",
  "ATP6V1E1P2",
  "ATP6V1E1P3",
  "ATP6V1E2",
  "ATP6V1F",
  "ATP6V1G1",
  "ATP6V1G1P1",
  "ATP6V1G1P2",
  "ATP6V1G1P3",
  "ATP6V1G1P4",
  "ATP6V1G1P5",
  "ATP6V1G1P6",
  "ATP6V1G1P7",
  "ATP6V1G2",
  "ATP6V1G2-DDX39B",
  "ATP6V1G3",
  "ATP6V1H",
  "ATP6V0A1",
  "ATP6V0A2",
  "ATP6V0A4",
  "ATP6V0B",
  "ATP6V0C",
  "ATP6V0CP1",
  "ATP6V0CP2",
  "ATP6V0CP3",
  "ATP6V0CP4",
  "ATP6V0D1",
  "ATP6V0D2",
  "ATP6V0E1",
  "ATP6V0E1P1",
  "ATP6V0E1P2",
  "ATP6V0E1P3",
  "ATP6V0E1P4",
  "ATP6V0E2",
  "ATP6V0E2-AS1",
  "ATP7A",
  "ATP7B",
  "ATP7BP1",
  "ATP8A1",
  "ATP8A2",
  "ATP8A2P1",
  "ATP8A2P2",
  "ATP8A2P3",
  "ATP8B1",
  "ATP8B2",
  "ATP8B3",
  "ATP8B4",
  "ATP8B5P",
  "ATP9A",
  "ATP9B",
  "ATP10A",
  "ATP10B",
  "ATP10D",
  "ATP11A",
  "ATP11A-AS1",
  "ATP11AUN",
  "ATP11B",
  "ATP11C",
  "ATP12A",
  "ATP13A1",
  "ATP13A2",
  "ATP13A3",
  "ATP13A4",
  "ATP13A4-AS1",
  "ATP13A5",
  "ATP13A5-AS1",
  "ATP23",
  "ATPAF1",
  "ATPAF2",
  "ATPIF1",
  "ATPSBL2",
  "ATR",
  "ATRAID",
  "ATRIP",
  "ATRN",
  "ATRNL1",
  "ATRX",
  "ATXN1",
  "ATXN1L",
  "ATXN2",
  "ATXN2-AS",
  "ATXN2L",
  "ATXN3",
  "ATXN3L",
  "ATXN7",
  "ATXN7L1",
  "ATXN7L2",
  "ATXN7L3",
  "ATXN7L3B",
  "ATXN8",
  "ATXN8OS",
  "ATXN10",
  "AUH",
  "AUNIP",
  "AUNX1",
  "AUP1",
  "AURKA",
  "AURKAIP1",
  "AURKAPS1",
  "AURKAPS2",
  "AURKB",
  "AURKBPS1",
  "AURKC",
  "AUTS1",
  "AUTS2",
  "AUXN",
  "AVEN",
  "AVIL",
  "AVL9",
  "AVP",
  "AVPI1",
  "AVPR1A",
  "AVPR1B",
  "AVPR2",
  "AVRR",
  "AVR",
  "AVSD1",
  "AWAT1",
  "AWAT2",
  "AXDND1",
  "AXIN1",
  "AXIN2",
  "AXL",
  "AZF1",
  "AZF2",
  "AZGP1",
  "AZGP1P1",
  "AZGP1P2",
  "AZI2",
  "AZIN1",
  "AZIN1-AS1",
  "AZIN2",
  "AZU1",
  "AZU1P1",
  "B2M",
  "B2MR",
  "B3GALNT1",
  "B3GALNT1P1",
  "B3GALNT2",
  "B3GALNT2P1",
  "B3GALT1",
  "B3GALT2",
  "B3GALT4",
  "B3GALT5",
  "B3GALT5-AS1",
  "B3GALT6",
  "B3GAT1",
  "B3GAT2",
  "B3GAT3",
  "B3GAT3P1",
  "B3GLCT",
  "B3GNT2",
  "B3GNT2P1",
  "B3GNT3",
  "B3GNT4",
  "B3GNT5",
  "B3GNT6",
  "B3GNT7",
  "B3GNT8",
  "B3GNT9",
  "B3GNTL1",
  "B3GNTL1P1",
  "B3GNTL1P2",
  "B4GALNT1",
  "B4GALNT2",
  "B4GALNT2P1",
  "B4GALNT3",
  "B4GALNT4",
  "B4GALT1",
  "B4GALT1-AS1",
  "B4GALT2",
  "B4GALT3",
  "B4GALT4",
  "B4GALT4-AS1",
  "B4GALT5",
  "B4GALT6",
  "B4GALT7",
  "B4GAT1",
  "B9D1",
  "B9D2",
  "BAALC",
  "BAALC-AS1",
  "BAALC-AS2",
  "BAAT",
  "BAATP1",
  "BABAM1",
  "BACE1",
  "BACE1-AS",
  "BACE2",
  "BACE2-IT1",
  "BACH1",
  "BACH1-AS1",
  "BACH1-IT1",
  "BACH1-IT2",
  "BACH1-IT3",
  "BACH2",
  "BAD",
  "BAG1",
  "BAG2",
  "BAG3",
  "BAG4",
  "BAG5",
  "BAG6",
  "BAGE",
  "BAGE2",
  "BAGE3",
  "BAGE4",
  "BAGE5",
  "BAHCC1",
  "BAHD1",
  "BAIAP2",
  "BAIAP2-AS1",
  "BAIAP2L1",
  "BAIAP2L2",
  "BAIAP3",
  "BAK1",
  "BAK1P1",
  "BAK1P2",
  "BAMBI",
  "BANCR",
  "BANF1",
  "BANF1P1",
  "BANF1P2",
  "BANF1P3",
  "BANF1P4",
  "BANF1P5",
  "BANF2",
  "BANK1",
  "BANP",
  "BAP1",
  "BARD1",
  "BARHL1",
  "BARHL2",
  "BARX1",
  "BARX1-AS1",
  "BARX2",
  "BASP1",
  "BASP1P1",
  "BATF",
  "BATF2",
  "BATF3",
  "BAX",
  "BAZ1A",
  "BAZ1B",
  "BAZ2A",
  "BAZ2B",
  "BBC3",
  "BBIP1",
  "BBOF1",
  "BBOX1",
  "BBOX1-AS1",
  "BBS1",
  "BBS2",
  "BBS4",
  "BBS5",
  "BBS7",
  "BBS9",
  "BBS10",
  "BBS12",
  "BBX",
  "BCAM",
  "BCAN",
  "BCAP29",
  "BCAP31",
  "BCAP31P1",
  "BCAP31P2",
  "BCAR1",
  "BCAR1P1",
  "BCAR1P2",
  "BCAR3",
  "BCAR4",
  "BCAS1",
  "BCAS2",
  "BCAS2P1",
  "BCAS2P2",
  "BCAS2P3",
  "BCAS3",
  "BCAS4",
  "BCAT1",
  "BCAT2",
  "BCCIP",
  "BCDIN3D",
  "BCDIN3D-AS1",
  "BCGF1",
  "BCHE",
  "BCHEL1",
  "BCHEL3",
  "BCKDHA",
  "BCKDHB",
  "BCKDK",
  "BCL2",
  "BCL2A1",
  "BCL2L1",
  "BCL2L2",
  "BCL2L2-PABPN1",
  "BCL2L10",
  "BCL2L11",
  "BCL2L12",
  "BCL2L12P1",
  "BCL2L13",
  "BCL2L14",
  "BCL2L15",
  "BCL3",
  "BCL5",
  "BCL6",
  "BCL6B",
  "BCL7A",
  "BCL7B",
  "BCL7C",
  "BCL9",
  "BCL9L",
  "BCL9P1",
  "BCL10",
  "BCL11A",
  "BCL11B",
  "BCLAF1",
  "BCLAF1P1",
  "BCLAF1P2",
  "BCO1",
  "BCO2",
  "BCOR",
  "BCORL1",
  "BCORP1",
  "BCR",
  "BCRP1",
  "BCRP2",
  "BCRP3",
  "BCRP4",
  "BCRP5",
  "BCRP6",
  "BCRP7",
  "BCRP8",
  "BCRP9",
  "BCS1L",
  "BCYRN1",
  "BCYRN1P1",
  "BCYRN1P2",
  "BCYRN1P3",
  "BDH1",
  "BDH2",
  "BDH2P1",
  "BDKRB1",
  "BDKRB2",
  "BDM",
  "BDNF",
  "BDNF-AS",
  "BDP1",
  "BDP1P",
  "BEAN1",
  "BEAN1-AS1",
  "BECN1",
  "BECN1P2",
  "BECN2",
  "BEGAIN",
  "BEND2",
  "BEND3",
  "BEND3P1",
  "BEND3P2",
  "BEND3P3",
  "BEND4",
  "BEND5",
  "BEND6",
  "BEND7",
  "BEND7P1",
  "BEST1",
  "BEST2",
  "BEST3",
  "BEST4",
  "BET1",
  "BET1L",
  "BET1P1",
  "BEVI",
  "BEX1",
  "BEX2",
  "BEX3",
  "BEX4",
  "BEX5",
  "BFAR",
  "BFSP1",
  "BFSP2",
  "BFSP2-AS1",
  "BGLAP",
  "BGLT3",
  "BGN",
  "BHLHA9",
  "BHLHA15",
  "BHLHB9",
  "BHLHB9P1",
  "BHLHE22",
  "BHLHE23",
  "BHLHE40",
  "BHLHE40-AS1",
  "BHLHE41",
  "BHMG1",
  "BHMT",
  "BHMT2",
  "BICC1",
  "BICD1",
  "BICD1P1",
  "BICD2",
  "BICDL1",
  "BICDL2",
  "BID",
  "BIK",
  "BIN1",
  "BIN2",
  "BIN2P1",
  "BIN2P2",
  "BIN3",
  "BIN3-IT1",
  "BIRC2",
  "BIRC3",
  "BIRC5",
  "BIRC6",
  "BIRC6-AS1",
  "BIRC6-AS2",
  "BIRC7",
  "BIRC8",
  "BISPR",
  "BIVM",
  "BIVM-ERCC5",
  "BLACAT1",
  "BLACE",
  "BLCAP",
  "BLID",
  "BLK",
  "BLM",
  "BLMH",
  "BLNK",
  "BLOC1S1",
  "BLOC1S2",
  "BLOC1S2P1",
  "BLOC1S3",
  "BLOC1S4",
  "BLOC1S5",
  "BLOC1S5-TXNDC5",
  "BLOC1S6",
  "BLVRA",
  "BLVRB",
  "BLYM",
  "BLZF1",
  "BLZF2P",
  "BMF",
  "BMI1",
  "BMI1P1",
  "BMIQ1",
  "BMIQ2",
  "BMIQ3",
  "BMIQ5",
  "BMIQ6",
  "BMP1",
  "BMP2",
  "BMP2K",
  "BMP2KL",
  "BMP3",
  "BMP4",
  "BMP5",
  "BMP6",
  "BMP6P1",
  "BMP7",
  "BMP7-AS1",
  "BMP8A",
  "BMP8B",
  "BMP10",
  "BMP15",
  "BMPER",
  "BMPR1A",
  "BMPR1APS1",
  "BMPR1APS2",
  "BMPR1B",
  "BMPR1B-AS1",
  "BMPR2",
  "BMS1",
  "BMS1P1",
  "BMS1P2",
  "BMS1P3",
  "BMS1P4",
  "BMS1P5",
  "BMS1P6",
  "BMS1P7",
  "BMS1P8",
  "BMS1P9",
  "BMS1P10",
  "BMS1P11",
  "BMS1P12",
  "BMS1P13",
  "BMS1P14",
  "BMS1P15",
  "BMS1P16",
  "BMS1P17",
  "BMS1P18",
  "BMS1P19",
  "BMS1P20",
  "BMS1P21",
  "BMS1P22",
  "BMT2",
  "BMX",
  "BNC1",
  "BNC2",
  "BNIP1",
  "BNIP2",
  "BNIP3",
  "BNIP3L",
  "BNIP3P1",
  "BNIP3P2",
  "BNIP3P3",
  "BNIP3P4",
  "BNIP3P5",
  "BNIP3P6",
  "BNIP3P7",
  "BNIP3P8",
  "BNIP3P9",
  "BNIP3P10",
  "BNIP3P11",
  "BNIP3P12",
  "BNIP3P13",
  "BNIP3P14",
  "BNIP3P15",
  "BNIP3P16",
  "BNIP3P17",
  "BNIP3P18",
  "BNIP3P19",
  "BNIP3P20",
  "BNIP3P21",
  "BNIP3P22",
  "BNIP3P23",
  "BNIP3P24",
  "BNIP3P25",
  "BNIP3P26",
  "BNIP3P27",
  "BNIP3P28",
  "BNIP3P29",
  "BNIP3P30",
  "BNIP3P31",
  "BNIP3P32",
  "BNIP3P33",
  "BNIP3P34",
  "BNIP3P35",
  "BNIP3P36",
  "BNIP3P37",
  "BNIP3P38",
  "BNIP3P39",
  "BNIP3P40",
  "BNIP3P41",
  "BNIP3P42",
  "BNIPL",
  "BOC",
  "BOD1",
  "BOD1L1",
  "BOD1L2",
  "BOD1P1",
  "BOD1P2",
  "BOK",
  "BOK-AS1",
  "BOLA1",
  "BOLA2",
  "BOLA2B",
  "BOLA2P1",
  "BOLA2P2",
  "BOLA2P3",
  "BOLA3",
  "BOLA3-AS1",
  "BOLA3P1",
  "BOLA3P2",
  "BOLA3P3",
  "BOLA3P4",
  "BOLL",
  "BOP1",
  "BORA",
  "BORCS5",
  "BORCS6",
  "BORCS7",
  "BORCS7-ASMT",
  "BORCS8",
  "BORCS8-MEF2B",
  "BPESC1",
  "BPGM",
  "BPHL",
  "BPI",
  "BPIFA1",
  "BPIFA2",
  "BPIFA3",
  "BPIFA4P",
  "BPIFB1",
  "BPIFB2",
  "BPIFB3",
  "BPIFB4",
  "BPIFB5P",
  "BPIFB6",
  "BPIFB9P",
  "BPIFC",
  "BPNT1",
  "BPTF",
  "BPY2",
  "BPY2B",
  "BPY2C",
  "BPY2DP",
  "BRAF",
  "BRAFP1",
  "BRAFPS1",
  "BRAP",
  "BRAT1",
  "BRCA1",
  "BRCA1P1",
  "BRCA2",
  "BRCA3",
  "BRCC3",
  "BRCC3P1",
  "BRD1",
  "BRD2",
  "BRD2-IT1",
  "BRD3",
  "BRD4",
  "BRD7",
  "BRD7P1",
  "BRD7P2",
  "BRD7P3",
  "BRD7P4",
  "BRD7P5",
  "BRD7P6",
  "BRD8",
  "BRD9",
  "BRD9P1",
  "BRD9P2",
  "BRDT",
  "BRDTP1",
  "BRE",
  "BRE-AS1",
  "BRF1",
  "BRF2",
  "BRI3",
  "BRI3BP",
  "BRI3BPP1",
  "BRI3P1",
  "BRI3P2",
  "BRI3P3",
  "BRICD5",
  "BRINP1",
  "BRINP2",
  "BRINP3",
  "BRIP1",
  "BRIX1",
  "BRIX1P1",
  "BRK1",
  "BRK1P2",
  "BRMS1",
  "BRMS1L",
  "BROX",
  "BRPF1",
  "BRPF3",
  "BRS3",
  "BRSK1",
  "BRSK2",
  "BRWD1",
  "BRWD1-AS1",
  "BRWD1-AS2",
  "BRWD1-IT1",
  "BRWD1P1",
  "BRWD1P2",
  "BRWD1P3",
  "BRWD3",
  "BSCL2",
  "BSDC1",
  "BSG",
  "BSN",
  "BSN-AS1",
  "BSN-AS2",
  "BSND",
  "BSNDP1",
  "BSNDP2",
  "BSNDP3",
  "BSNDP4",
  "BSPH1",
  "BSPRY",
  "BST1",
  "BST2",
  "BSX",
  "BTAF1",
  "BTBD1",
  "BTBD2",
  "BTBD3",
  "BTBD6",
  "BTBD6P1",
  "BTBD7",
  "BTBD7P1",
  "BTBD7P2",
  "BTBD8",
  "BTBD9",
  "BTBD9-AS1",
  "BTBD10",
  "BTBD10P1",
  "BTBD10P2",
  "BTBD11",
  "BTBD16",
  "BTBD17",
  "BTBD18",
  "BTBD19",
  "BTC",
  "BTD",
  "BTF3",
  "BTF3L4",
  "BTF3L4P1",
  "BTF3L4P2",
  "BTF3L4P3",
  "BTF3L4P4",
  "BTF3P1",
  "BTF3P2",
  "BTF3P3",
  "BTF3P4",
  "BTF3P5",
  "BTF3P6",
  "BTF3P7",
  "BTF3P8",
  "BTF3P9",
  "BTF3P10",
  "BTF3P11",
  "BTF3P12",
  "BTF3P13",
  "BTF3P14",
  "BTF3P15",
  "BTF3P16",
  "BTG1",
  "BTG1P1",
  "BTG2",
  "BTG3",
  "BTG3P1",
  "BTG4",
  "BTG4P1",
  "BTK",
  "BTLA",
  "BTN1A1",
  "BTN1A1P1",
  "BTN2A1",
  "BTN2A2",
  "BTN2A3P",
  "BTN3A1",
  "BTN3A2",
  "BTN3A3",
  "BTNL2",
  "BTNL3",
  "BTNL8",
  "BTNL9",
  "BTNL10",
  "BTRC",
  "BTRCP1",
  "BTS1",
  "BUB1",
  "BUB1B",
  "BUB1P1",
  "BUB3",
  "BUB3P1",
  "BUD13",
  "BUD13P1",
  "BUD31",
  "BUD31P1",
  "BUD31P2",
  "BVES",
  "BVES-AS1",
  "BVR1",
  "BYSL",
  "BZW1",
  "BZW1P1",
  "BZW1P2",
  "BZW2",
  "C1D",
  "C1DP1",
  "C1DP2",
  "C1DP3",
  "C1DP4",
  "C1DP5",
  "C1GALT1",
  "C1GALT1C1",
  "C1GALT1C1L",
  "C1GALT1P1",
  "C1GALT1P2",
  "C1GALT1P3",
  "C1HR",
  "C1orf5",
  "C1orf20",
  "C1orf21",
  "C1orf27",
  "C1orf35",
  "C1orf43",
  "C1orf50",
  "C1orf52",
  "C1orf53",
  "C1orf54",
  "C1orf56",
  "C1orf61",
  "C1orf64",
  "C1orf68",
  "C1orf74",
  "C1orf87",
  "C1orf94",
  "C1orf100",
  "C1orf101",
  "C1orf105",
  "C1orf106",
  "C1orf109",
  "C1orf111",
  "C1orf112",
  "C1orf115",
  "C1orf116",
  "C1orf122",
  "C1orf123",
  "C1orf127",
  "C1orf131",
  "C1orf132",
  "C1orf134",
  "C1orf136",
  "C1orf137",
  "C1orf140",
  "C1orf141",
  "C1orf143",
  "C1orf145",
  "C1orf146",
  "C1orf147",
  "C1orf158",
  "C1orf159",
  "C1orf162",
  "C1orf167",
  "C1orf168",
  "C1orf174",
  "C1orf185",
  "C1orf186",
  "C1orf189",
  "C1orf193",
  "C1orf194",
  "C1orf195",
  "C1orf196",
  "C1orf197",
  "C1orf198",
  "C1orf204",
  "C1orf210",
  "C1orf216",
  "C1orf220",
  "C1orf226",
  "C1orf228",
  "C1orf229",
  "C1orf234",
  "C1QA",
  "C1QB",
  "C1QBP",
  "C1QBPP1",
  "C1QBPP2",
  "C1QBPP3",
  "C1QC",
  "C1QL1",
  "C1QL1P1",
  "C1QL2",
  "C1QL3",
  "C1QL4",
  "C1QTNF1",
  "C1QTNF1-AS1",
  "C1QTNF2",
  "C1QTNF3",
  "C1QTNF3-AMACR",
  "C1QTNF4",
  "C1QTNF5",
  "C1QTNF6",
  "C1QTNF7",
  "C1QTNF8",
  "C1QTNF9",
  "C1QTNF9-AS1",
  "C1QTNF9B",
  "C1QTNF9B-AS1",
  "C1R",
  "C1RL",
  "C1RL-AS1",
  "C1S",
  "C2",
  "C2-AS1",
  "C2CD2",
  "C2CD2L",
  "C2CD3",
  "C2CD4A",
  "C2CD4B",
  "C2CD4C",
  "C2CD4D",
  "C2CD5",
  "C2orf15",
  "C2orf16",
  "C2orf27A",
  "C2orf27AP1",
  "C2orf27AP2",
  "C2orf27AP3",
  "C2orf27B",
  "C2orf40",
  "C2orf42",
  "C2orf48",
  "C2orf49",
  "C2orf50",
  "C2orf54",
  "C2orf57",
  "C2orf61",
  "C2orf66",
  "C2orf68",
  "C2orf69",
  "C2orf69P1",
  "C2orf69P2",
  "C2orf69P3",
  "C2orf69P4",
  "C2orf69P5",
  "C2orf70",
  "C2orf71",
  "C2orf72",
  "C2orf73",
  "C2orf74",
  "C2orf76",
  "C2orf78",
  "C2orf80",
  "C2orf81",
  "C2orf82",
  "C2orf83",
  "C2orf88",
  "C2orf90",
  "C2orf91",
  "C3",
  "C3AR1",
  "C3CER1",
  "C3orf14",
  "C3orf18",
  "C3orf20",
  "C3orf22",
  "C3orf30",
  "C3orf33",
  "C3orf35",
  "C3orf36",
  "C3orf38",
  "C3orf49",
  "C3orf52",
  "C3orf53",
  "C3orf56",
  "C3orf58",
  "C3orf62",
  "C3orf67",
  "C3orf67-AS1",
  "C3orf70",
  "C3orf79",
  "C3orf80",
  "C3orf84",
  "C3P1",
  "C4A",
  "C4A-AS1",
  "C4B",
  "C4B-AS1",
  "C4BPA",
  "C4BPAP1",
  "C4BPAP2",
  "C4BPAP3",
  "C4BPB",
  "C4B_2",
  "C4orf3",
  "C4orf17",
  "C4orf19",
  "C4orf22",
  "C4orf26",
  "C4orf32",
  "C4orf33",
  "C4orf36",
  "C4orf45",
  "C4orf46",
  "C4orf47",
  "C4orf48",
  "C4orf50",
  "C4orf51",
  "C5",
  "C5AR1",
  "C5AR2",
  "C5orf9",
  "C5orf15",
  "C5orf17",
  "C5orf22",
  "C5orf24",
  "C5orf30",
  "C5orf34",
  "C5orf38",
  "C5orf42",
  "C5orf46",
  "C5orf47",
  "C5orf49",
  "C5orf51",
  "C5orf52",
  "C5orf56",
  "C5orf58",
  "C5orf60",
  "C5orf63",
  "C5orf64",
  "C5orf66",
  "C5orf66-AS1",
  "C5orf66-AS2",
  "C5orf67",
  "C6",
  "C6orf1",
  "C6orf10",
  "C6orf15",
  "C6orf25",
  "C6orf36",
  "C6orf42",
  "C6orf43",
  "C6orf47",
  "C6orf47-AS1",
  "C6orf48",
  "C6orf50",
  "C6orf52",
  "C6orf58",
  "C6orf62",
  "C6orf89",
  "C6orf99",
  "C6orf106",
  "C6orf118",
  "C6orf120",
  "C6orf132",
  "C6orf136",
  "C6orf141",
  "C6orf163",
  "C6orf183",
  "C6orf200",
  "C6orf201",
  "C6orf202",
  "C6orf203",
  "C6orf215",
  "C6orf222",
  "C6orf223",
  "C6orf226",
  "C6orf229",
  "C7",
  "C7orf25",
  "C7orf26",
  "C7orf31",
  "C7orf33",
  "C7orf34",
  "C7orf43",
  "C7orf49",
  "C7orf50",
  "C7orf55-LUC7L2",
  "C7orf57",
  "C7orf61",
  "C7orf62",
  "C7orf65",
  "C7orf66",
  "C7orf69",
  "C7orf71",
  "C7orf72",
  "C7orf73",
  "C7orf76",
  "C7orf77",
  "C8A",
  "C8B",
  "C8G",
  "C8orf4",
  "C8orf6",
  "C8orf15",
  "C8orf16",
  "C8orf17",
  "C8orf22",
  "C8orf27",
  "C8orf28",
  "C8orf29",
  "C8orf31",
  "C8orf33",
  "C8orf34",
  "C8orf34-AS1",
  "C8orf37",
  "C8orf37-AS1",
  "C8orf44",
  "C8orf44-SGK3",
  "C8orf46",
  "C8orf48",
  "C8orf49",
  "C8orf58",
  "C8orf59",
  "C8orf59P1",
  "C8orf59P2",
  "C8orf60",
  "C8orf63",
  "C8orf64",
  "C8orf65",
  "C8orf66",
  "C8orf67",
  "C8orf74",
  "C8orf76",
  "C8orf82",
  "C8orf86",
  "C8orf87",
  "C8orf88",
  "C8orf89",
  "C9",
  "C9orf1",
  "C9orf3",
  "C9orf16",
  "C9orf24",
  "C9orf33",
  "C9orf38",
  "C9orf40",
  "C9orf41-AS1",
  "C9orf43",
  "C9orf47",
  "C9orf50",
  "C9orf56",
  "C9orf57",
  "C9orf62",
  "C9orf63",
  "C9orf64",
  "C9orf66",
  "C9orf69",
  "C9orf72",
  "C9orf78",
  "C9orf84",
  "C9orf85",
  "C9orf92",
  "C9orf106",
  "C9orf116",
  "C9orf118",
  "C9orf129",
  "C9orf131",
  "C9orf135",
  "C9orf135-AS1",
  "C9orf139",
  "C9orf142",
  "C9orf147",
  "C9orf149",
  "C9orf152",
  "C9orf153",
  "C9orf163",
  "C9orf170",
  "C9orf172",
  "C10orf1",
  "C10orf10",
  "C10orf11",
  "C10orf25",
  "C10orf35",
  "C10orf53",
  "C10orf54",
  "C10orf55",
  "C10orf62",
  "C10orf67",
  "C10orf71",
  "C10orf71-AS1",
  "C10orf76",
  "C10orf82",
  "C10orf88",
  "C10orf90",
  "C10orf91",
  "C10orf95",
  "C10orf99",
  "C10orf105",
  "C10orf107",
  "C10orf111",
  "C10orf113",
  "C10orf120",
  "C10orf126",
  "C10orf128",
  "C10orf131",
  "C10orf142",
  "C11orf1",
  "C11orf16",
  "C11orf21",
  "C11orf24",
  "C11orf26",
  "C11orf40",
  "C11orf42",
  "C11orf44",
  "C11orf45",
  "C11orf49",
  "C11orf52",
  "C11orf53",
  "C11orf54",
  "C11orf57",
  "C11orf58",
  "C11orf62",
  "C11orf63",
  "C11orf65",
  "C11orf68",
  "C11orf70",
  "C11orf71",
  "C11orf72",
  "C11orf74",
  "C11orf80",
  "C11orf84",
  "C11orf86",
  "C11orf87",
  "C11orf88",
  "C11orf91",
  "C11orf94",
  "C11orf95",
  "C11orf96",
  "C11orf97",
  "C11orf98",
  "C11orf98P1",
  "C12orf4",
  "C12orf9",
  "C12orf10",
  "C12orf29",
  "C12orf40",
  "C12orf42",
  "C12orf43",
  "C12orf45",
  "C12orf49",
  "C12orf50",
  "C12orf54",
  "C12orf56",
  "C12orf57",
  "C12orf60",
  "C12orf65",
  "C12orf66",
  "C12orf71",
  "C12orf73",
  "C12orf74",
  "C12orf75",
  "C12orf76",
  "C12orf77",
  "C12orf80",
  "C13orf41",
  "C14orf1",
  "C14orf2",
  "C14orf7",
  "C14orf16",
  "C14orf28",
  "C14orf37",
  "C14orf39",
  "C14orf40",
  "C14orf56",
  "C14orf57",
  "C14orf65",
  "C14orf79",
  "C14orf80",
  "C14orf81",
  "C14orf91",
  "C14orf93",
  "C14orf99",
  "C14orf105",
  "C14orf113",
  "C14orf119",
  "C14orf132",
  "C14orf136",
  "C14orf144",
  "C14orf157",
  "C14orf159",
  "C14orf166",
  "C14orf169",
  "C14orf177",
  "C14orf178",
  "C14orf180",
  "C14orf181",
  "C14orf184",
  "C15orf31",
  "C15orf32",
  "C15orf35",
  "C15orf38-AP3S2",
  "C15orf39",
  "C15orf40",
  "C15orf41",
  "C15orf45",
  "C15orf48",
  "C15orf49",
  "C15orf52",
  "C15orf53",
  "C15orf54",
  "C15orf56",
  "C15orf57",
  "C15orf59",
  "C15orf59-AS1",
  "C15orf61",
  "C15orf62",
  "C15orf65",
  "C16orf43",
  "C16orf45",
  "C16orf46",
  "C16orf47",
  "C16orf52",
  "C16orf54",
  "C16orf58",
  "C16orf59",
  "C16orf62",
  "C16orf70",
  "C16orf71",
  "C16orf72",
  "C16orf74",
  "C16orf78",
  "C16orf82",
  "C16orf86",
  "C16orf87",
  "C16orf89",
  "C16orf90",
  "C16orf91",
  "C16orf92",
  "C16orf95",
  "C16orf96",
  "C16orf97",
  "C17orf2",
  "C17orf4",
  "C17orf5",
  "C17orf7",
  "C17orf8",
  "C17orf9",
  "C17orf10",
  "C17orf11",
  "C17orf12",
  "C17orf13",
  "C17orf14",
  "C17orf15",
  "C17orf16",
  "C17orf17",
  "C17orf18",
  "C17orf19",
  "C17orf20",
  "C17orf21",
  "C17orf22",
  "C17orf47",
  "C17orf49",
  "C17orf50",
  "C17orf51",
  "C17orf53",
  "C17orf58",
  "C17orf62",
  "C17orf64",
  "C17orf67",
  "C17orf74",
  "C17orf75",
  "C17orf77",
  "C17orf78",
  "C17orf80",
  "C17orf82",
  "C17orf84",
  "C17orf97",
  "C17orf98",
  "C17orf99",
  "C17orf100",
  "C17orf102",
  "C17orf105",
  "C17orf107",
  "C17orf112",
  "C18orf8",
  "C18orf12",
  "C18orf15",
  "C18orf21",
  "C18orf25",
  "C18orf32",
  "C18orf33",
  "C18orf41",
  "C18orf50",
  "C18orf54",
  "C18orf57",
  "C18orf61",
  "C18orf63",
  "C18orf65",
  "C19orf8",
  "C19orf12",
  "C19orf18",
  "C19orf24",
  "C19orf25",
  "C19orf31",
  "C19orf33",
  "C19orf35",
  "C19orf38",
  "C19orf43",
  "C19orf44",
  "C19orf45",
  "C19orf47",
  "C19orf48",
  "C19orf53",
  "C19orf54",
  "C19orf57",
  "C19orf60",
  "C19orf66",
  "C19orf67",
  "C19orf68",
  "C19orf70",
  "C19orf71",
  "C19orf73",
  "C19orf81",
  "C19orf84",
  "C20orf24",
  "C20orf27",
  "C20orf66",
  "C20orf78",
  "C20orf85",
  "C20orf89",
  "C20orf96",
  "C20orf109",
  "C20orf141",
  "C20orf144",
  "C20orf166-AS1",
  "C20orf173",
  "C20orf181",
  "C20orf187",
  "C20orf194",
  "C20orf196",
  "C20orf197",
  "C20orf202",
  "C20orf203",
  "C21orf2",
  "C21orf12",
  "C21orf32",
  "C21orf33",
  "C21orf40",
  "C21orf53",
  "C21orf58",
  "C21orf59",
  "C21orf62",
  "C21orf62-AS1",
  "C21orf72",
  "C21orf79",
  "C21orf91",
  "C21orf91-OT1",
  "C21orf114",
  "C21orf116",
  "C21orf118",
  "C21orf140",
  "C22orf15",
  "C22orf23",
  "C22orf24",
  "C22orf29",
  "C22orf31",
  "C22orf34",
  "C22orf39",
  "C22orf42",
  "C22orf46",
  "CA1",
  "CA2",
  "CA3",
  "CA3-AS1",
  "CA4",
  "CA5A",
  "CA5AP1",
  "CA5B",
  "CA5B-AS1",
  "CA5BP1",
  "CA6",
  "CA7",
  "CA8",
  "CA9",
  "CA10",
  "CA11",
  "CA12",
  "CA13",
  "CA14",
  "CA15P1",
  "CA15P2",
  "CA15P3",
  "CAAP1",
  "CAB39",
  "CAB39L",
  "CAB39P1",
  "CABIN1",
  "CABLES1",
  "CABLES1L",
  "CABLES2",
  "CABP1",
  "CABP2",
  "CABP4",
  "CABP5",
  "CABP7",
  "CABS1",
  "CABYR",
  "CABYRP1",
  "CACD",
  "CACFD1",
  "CACHD1",
  "CACNA1A",
  "CACNA1B",
  "CACNA1C",
  "CACNA1C-AS1",
  "CACNA1C-AS2",
  "CACNA1C-AS3",
  "CACNA1C-AS4",
  "CACNA1C-IT1",
  "CACNA1C-IT2",
  "CACNA1C-IT3",
  "CACNA1D",
  "CACNA1E",
  "CACNA1F",
  "CACNA1G",
  "CACNA1G-AS1",
  "CACNA1H",
  "CACNA1I",
  "CACNA1S",
  "CACNA2D1",
  "CACNA2D2",
  "CACNA2D3",
  "CACNA2D3-AS1",
  "CACNA2D4",
  "CACNB1",
  "CACNB2",
  "CACNB3",
  "CACNB4",
  "CACNG1",
  "CACNG2",
  "CACNG3",
  "CACNG4",
  "CACNG5",
  "CACNG6",
  "CACNG7",
  "CACNG8",
  "CACTIN",
  "CACTIN-AS1",
  "CACUL1",
  "CACYBP",
  "CACYBPP1",
  "CACYBPP2",
  "CACYBPP3",
  "CAD",
  "CADM1",
  "CADM2",
  "CADM2-AS1",
  "CADM2-AS2",
  "CADM3",
  "CADM3-AS1",
  "CADM4",
  "CADPS",
  "CADPS2",
  "CAE2",
  "CAGE1",
  "CAHM",
  "CALB1",
  "CALB2",
  "CALCA",
  "CALCB",
  "CALCOCO1",
  "CALCOCO2",
  "CALCP",
  "CALCR",
  "CALCRL",
  "CALD1",
  "CALHM1",
  "CALHM2",
  "CALHM3",
  "CALM1",
  "CALM1P1",
  "CALM1P2",
  "CALM2",
  "CALM2P1",
  "CALM2P2",
  "CALM2P3",
  "CALM2P4",
  "CALM3",
  "CALML3",
  "CALML3-AS1",
  "CALML4",
  "CALML5",
  "CALML6",
  "CALN1",
  "CALR",
  "CALR3",
  "CALR4P",
  "CALU",
  "CALY",
  "CAMK1",
  "CAMK1D",
  "CAMK1G",
  "CAMK2A",
  "CAMK2B",
  "CAMK2D",
  "CAMK2G",
  "CAMK2N1",
  "CAMK2N2",
  "CAMK4",
  "CAMKK1",
  "CAMKK2",
  "CAMKMT",
  "CAMKV",
  "CAMLG",
  "CAMP",
  "CAMSAP1",
  "CAMSAP2",
  "CAMSAP3",
  "CAMTA1",
  "CAMTA1-IT1",
  "CAMTA2",
  "CAND1",
  "CAND2",
  "CANDN1",
  "CANT1",
  "CANX",
  "CAP1",
  "CAP1P1",
  "CAP1P2",
  "CAP2",
  "CAP2P1",
  "CAPG",
  "CAPN1",
  "CAPN2",
  "CAPN3",
  "CAPN5",
  "CAPN6",
  "CAPN7",
  "CAPN8",
  "CAPN9",
  "CAPN10",
  "CAPN10-AS1",
  "CAPN11",
  "CAPN12",
  "CAPN13",
  "CAPN14",
  "CAPN15",
  "CAPNS1",
  "CAPNS1P1",
  "CAPNS2",
  "CAPRIN1",
  "CAPRIN2",
  "CAPS",
  "CAPS2",
  "CAPSL",
  "CAPZA1",
  "CAPZA1P",
  "CAPZA2",
  "CAPZA3",
  "CAPZB",
  "CARD6",
  "CARD8",
  "CARD8-AS1",
  "CARD9",
  "CARD10",
  "CARD11",
  "CARD14",
  "CARD16",
  "CARD17",
  "CARD18",
  "CARD19",
  "CARF",
  "CARHSP1",
  "CARM1",
  "CARM1P1",
  "CARMIL1",
  "CARMIL2",
  "CARMIL3",
  "CARMN",
  "CARNMT1",
  "CARNS1",
  "CARS",
  "CARS-AS1",
  "CARS2",
  "CARSP1",
  "CARSP2",
  "CARTPT",
  "CASC1",
  "CASC2",
  "CASC3",
  "CASC4",
  "CASC4P1",
  "CASC6",
  "CASC7",
  "CASC8",
  "CASC9",
  "CASC10",
  "CASC11",
  "CASC15",
  "CASC16",
  "CASC17",
  "CASC18",
  "CASC19",
  "CASC20",
  "CASC21",
  "CASC22",
  "CASC23",
  "CASD1",
  "CASK",
  "CASK-AS1",
  "CASKIN1",
  "CASKIN2",
  "CASKP1",
  "CASP1",
  "CASP1P1",
  "CASP1P2",
  "CASP1P3",
  "CASP2",
  "CASP3",
  "CASP3P1",
  "CASP4",
  "CASP5",
  "CASP6",
  "CASP7",
  "CASP8",
  "CASP8AP2",
  "CASP9",
  "CASP10",
  "CASP12",
  "CASP14",
  "CASP16P",
  "CASQ1",
  "CASQ2",
  "CASR",
  "CASS4",
  "CAST",
  "CASZ1",
  "CAT",
  "CATHL1L",
  "CATHLP",
  "CATIP",
  "CATIP-AS1",
  "CATIP-AS2",
  "CATR1",
  "CATSPER1",
  "CATSPER2",
  "CATSPER2P1",
  "CATSPER3",
  "CATSPER4",
  "CATSPERB",
  "CATSPERD",
  "CATSPERG",
  "CAV1",
  "CAV2",
  "CAV3",
  "CBARP",
  "CBFA2T2",
  "CBFA2T3",
  "CBFB",
  "CBL",
  "CBLB",
  "CBLC",
  "CBLL1",
  "CBLN1",
  "CBLN2",
  "CBLN3",
  "CBLN4",
  "CBR1",
  "CBR3",
  "CBR3-AS1",
  "CBR4",
  "CBS",
  "CBSL",
  "CBWD1",
  "CBWD2",
  "CBWD3",
  "CBWD4P",
  "CBWD5",
  "CBWD6",
  "CBWD7",
  "CBX1",
  "CBX1P1",
  "CBX1P2",
  "CBX1P3",
  "CBX1P4",
  "CBX1P5",
  "CBX2",
  "CBX3",
  "CBX3P1",
  "CBX3P2",
  "CBX3P3",
  "CBX3P4",
  "CBX3P5",
  "CBX3P6",
  "CBX3P7",
  "CBX3P8",
  "CBX3P9",
  "CBX4",
  "CBX5",
  "CBX5P1",
  "CBX6",
  "CBX7",
  "CBX8",
  "CBY1",
  "CBY3",
  "CC2D1A",
  "CC2D1B",
  "CC2D2A",
  "CC2D2B",
  "CCA1",
  "CCAL1",
  "CCAR1",
  "CCAR2",
  "CCAT1",
  "CCAT2",
  "CCBE1",
  "CCD#",
  "CCDC3",
  "CCDC6",
  "CCDC7",
  "CCDC8",
  "CCDC9",
  "CCDC11P1",
  "CCDC12",
  "CCDC13",
  "CCDC13-AS1",
  "CCDC14",
  "CCDC15",
  "CCDC17",
  "CCDC18",
  "CCDC18-AS1",
  "CCDC22",
  "CCDC24",
  "CCDC25",
  "CCDC26",
  "CCDC27",
  "CCDC28A",
  "CCDC28B",
  "CCDC30",
  "CCDC33",
  "CCDC34",
  "CCDC34P1",
  "CCDC36",
  "CCDC37-AS1",
  "CCDC38",
  "CCDC39",
  "CCDC39-AS1",
  "CCDC40",
  "CCDC42",
  "CCDC43",
  "CCDC47",
  "CCDC50",
  "CCDC51",
  "CCDC54",
  "CCDC57",
  "CCDC58",
  "CCDC58P1",
  "CCDC58P2",
  "CCDC58P3",
  "CCDC58P4",
  "CCDC58P5",
  "CCDC59",
  "CCDC60",
  "CCDC61",
  "CCDC62",
  "CCDC63",
  "CCDC65",
  "CCDC66",
  "CCDC68",
  "CCDC69",
  "CCDC70",
  "CCDC71",
  "CCDC71L",
  "CCDC73",
  "CCDC74A",
  "CCDC74B",
  "CCDC74BP1",
  "CCDC75P1",
  "CCDC77",
  "CCDC78",
  "CCDC80",
  "CCDC81",
  "CCDC82",
  "CCDC83",
  "CCDC84",
  "CCDC85A",
  "CCDC85B",
  "CCDC85C",
  "CCDC86",
  "CCDC87",
  "CCDC88A",
  "CCDC88B",
  "CCDC88C",
  "CCDC89",
  "CCDC90AP1",
  "CCDC90B",
  "CCDC91",
  "CCDC92",
  "CCDC92B",
  "CCDC93",
  "CCDC94",
  "CCDC96",
  "CCDC97",
  "CCDC102A",
  "CCDC102B",
  "CCDC103",
  "CCDC105",
  "CCDC106",
  "CCDC107",
  "CCDC110",
  "CCDC112",
  "CCDC113",
  "CCDC114",
  "CCDC115",
  "CCDC116",
  "CCDC117",
  "CCDC120",
  "CCDC121",
  "CCDC122",
  "CCDC124",
  "CCDC125",
  "CCDC126",
  "CCDC127",
  "CCDC129",
  "CCDC130",
  "CCDC134",
  "CCDC136",
  "CCDC137",
  "CCDC137P",
  "CCDC138",
  "CCDC140",
  "CCDC141",
  "CCDC142",
  "CCDC144A",
  "CCDC144B",
  "CCDC144CP",
  "CCDC144NL",
  "CCDC144NL-AS1",
  "CCDC146",
  "CCDC148",
  "CCDC148-AS1",
  "CCDC149",
  "CCDC150",
  "CCDC150P1",
  "CCDC151",
  "CCDC152",
  "CCDC153",
  "CCDC154",
  "CCDC155",
  "CCDC157",
  "CCDC158",
  "CCDC159",
  "CCDC160",
  "CCDC162P",
  "CCDC163",
  "CCDC166",
  "CCDC167",
  "CCDC168",
  "CCDC169",
  "CCDC169-SOHLH2",
  "CCDC170",
  "CCDC171",
  "CCDC172",
  "CCDC173",
  "CCDC174",
  "CCDC175",
  "CCDC177",
  "CCDC178",
  "CCDC179",
  "CCDC180",
  "CCDC181",
  "CCDC182",
  "CCDC183",
  "CCDC183-AS1",
  "CCDC184",
  "CCDC185",
  "CCDC186",
  "CCDC187",
  "CCDC188",
  "CCDC189",
  "CCDC190",
  "CCDC191",
  "CCDC192",
  "CCEPR",
  "CCER1",
  "CCER2",
  "CCHCR1",
  "CCIN",
  "CCK",
  "CCKAR",
  "CCKBR",
  "CCL1",
  "CCL2",
  "CCL3",
  "CCL3L1",
  "CCL3L3",
  "CCL3P1",
  "CCL4",
  "CCL4L1",
  "CCL4L2",
  "CCL5",
  "CCL7",
  "CCL8",
  "CCL11",
  "CCL13",
  "CCL14",
  "CCL15",
  "CCL15-CCL14",
  "CCL16",
  "CCL17",
  "CCL18",
  "CCL19",
  "CCL20",
  "CCL21",
  "CCL22",
  "CCL23",
  "CCL24",
  "CCL25",
  "CCL26",
  "CCL27",
  "CCL28",
  "CCM2",
  "CCM2L",
  "CCNA1",
  "CCNA2",
  "CCNB1",
  "CCNB1IP1",
  "CCNB1IP1P1",
  "CCNB1IP1P2",
  "CCNB1IP1P3",
  "CCNB2",
  "CCNB2P1",
  "CCNB3",
  "CCNB3P1",
  "CCNC",
  "CCND1",
  "CCND2",
  "CCND2-AS1",
  "CCND2-AS2",
  "CCND2P1",
  "CCND3",
  "CCND3P1",
  "CCND3P2",
  "CCNDBP1",
  "CCNE1",
  "CCNE2",
  "CCNF",
  "CCNG1",
  "CCNG1P1",
  "CCNG2",
  "CCNG2P1",
  "CCNH",
  "CCNHP1",
  "CCNI",
  "CCNI2",
  "CCNJ",
  "CCNJL",
  "CCNJP1",
  "CCNJP2",
  "CCNK",
  "CCNL1",
  "CCNL2",
  "CCNL2P1",
  "CCNO",
  "CCNT1",
  "CCNT2",
  "CCNT2-AS1",
  "CCNT2P1",
  "CCNY",
  "CCNYL1",
  "CCNYL2",
  "CCNYL3",
  "CCP110",
  "CCPG1",
  "CCR1",
  "CCR2",
  "CCR3",
  "CCR4",
  "CCR5",
  "CCR6",
  "CCR7",
  "CCR8",
  "CCR9",
  "CCR10",
  "CCR12P",
  "CCRL1P1",
  "CCRL2",
  "CCS",
  "CCSAP",
  "CCSER1",
  "CCSER2",
  "CCT",
  "CCT2",
  "CCT3",
  "CCT3P1",
  "CCT4",
  "CCT4P1",
  "CCT4P2",
  "CCT5",
  "CCT5P1",
  "CCT5P2",
  "CCT6A",
  "CCT6B",
  "CCT6P1",
  "CCT6P2",
  "CCT6P3",
  "CCT6P4",
  "CCT6P5",
  "CCT7",
  "CCT7P1",
  "CCT7P2",
  "CCT8",
  "CCT8L1P",
  "CCT8L2",
  "CCT8P1",
  "CCV",
  "CCZ1",
  "CCZ1B",
  "CD1A",
  "CD1B",
  "CD1C",
  "CD1D",
  "CD1E",
  "CD2",
  "CD2AP",
  "CD2BP2",
  "CD3D",
  "CD3E",
  "CD3EAP",
  "CD3G",
  "CD3W",
  "CD4",
  "CD5",
  "CD5L",
  "CD6",
  "CD7",
  "CD8A",
  "CD8B",
  "CD8BP",
  "CD9",
  "CD14",
  "CD19",
  "CD22",
  "CD24",
  "CD24P1",
  "CD24P2",
  "CD24P3",
  "CD24P4",
  "CD27",
  "CD27-AS1",
  "CD28",
  "CD33",
  "CD34",
  "CD36",
  "CD37",
  "CD38",
  "CD40",
  "CD40LG",
  "CD44",
  "CD46",
  "CD46P1",
  "CD47",
  "CD48",
  "CD52",
  "CD53",
  "CD55",
  "CD58",
  "CD59",
  "CD63",
  "CD68",
  "CD69",
  "CD70",
  "CD72",
  "CD74",
  "CD79A",
  "CD79B",
  "CD80",
  "CD81",
  "CD81-AS1",
  "CD82",
  "CD83",
  "CD83P1",
  "CD84",
  "CD86",
  "CD93",
  "CD96",
  "CD99",
  "CD99L2",
  "CD99P1",
  "CD101",
  "CD109",
  "CD151",
  "CD160",
  "CD163",
  "CD163L1",
  "CD164",
  "CD164L2",
  "CD177",
  "CD177P1",
  "CD180",
  "CD200",
  "CD200R1",
  "CD200R1L",
  "CD207",
  "CD209",
  "CD226",
  "CD244",
  "CD247",
  "CD248",
  "CD274",
  "CD276",
  "CD300A",
  "CD300C",
  "CD300E",
  "CD300LB",
  "CD300LD",
  "CD300LF",
  "CD300LG",
  "CD302",
  "CD320",
  "CDA",
  "CDADC1",
  "CDAN1",
  "CDAN3",
  "CDB2",
  "CDC5L",
  "CDC6",
  "CDC7",
  "CDC14A",
  "CDC14B",
  "CDC14C",
  "CDC16",
  "CDC20",
  "CDC20B",
  "CDC20P1",
  "CDC23",
  "CDC25A",
  "CDC25B",
  "CDC25C",
  "CDC26",
  "CDC26P1",
  "CDC27",
  "CDC27P1",
  "CDC27P2",
  "CDC27P3",
  "CDC27P4",
  "CDC27P5",
  "CDC27P6",
  "CDC27P7",
  "CDC27P8",
  "CDC27P9",
  "CDC27P10",
  "CDC27P11",
  "CDC34",
  "CDC37",
  "CDC37L1",
  "CDC37L1-AS1",
  "CDC37P1",
  "CDC37P2",
  "CDC40",
  "CDC42",
  "CDC42-IT1",
  "CDC42BPA",
  "CDC42BPB",
  "CDC42BPG",
  "CDC42EP1",
  "CDC42EP2",
  "CDC42EP3",
  "CDC42EP3P1",
  "CDC42EP4",
  "CDC42EP5",
  "CDC42P1",
  "CDC42P2",
  "CDC42P3",
  "CDC42P4",
  "CDC42P5",
  "CDC42P6",
  "CDC42SE1",
  "CDC42SE2",
  "CDC45",
  "CDC73",
  "CDC123",
  "CDCA2",
  "CDCA3",
  "CDCA4",
  "CDCA4P1",
  "CDCA4P2",
  "CDCA4P3",
  "CDCA4P4",
  "CDCA5",
  "CDCA7",
  "CDCA7L",
  "CDCA8",
  "CDCP1",
  "CDCP2",
  "CDH1",
  "CDH2",
  "CDH3",
  "CDH4",
  "CDH5",
  "CDH6",
  "CDH7",
  "CDH8",
  "CDH9",
  "CDH10",
  "CDH11",
  "CDH12",
  "CDH12P1",
  "CDH12P2",
  "CDH12P3",
  "CDH12P4",
  "CDH13",
  "CDH15",
  "CDH16",
  "CDH17",
  "CDH18",
  "CDH19",
  "CDH20",
  "CDH22",
  "CDH23",
  "CDH23-AS1",
  "CDH24",
  "CDH26",
  "CDHR1",
  "CDHR2",
  "CDHR3",
  "CDHR4",
  "CDHR5",
  "CDIP1",
  "CDIPT",
  "CDIPT-AS1",
  "CDK1",
  "CDK2",
  "CDK2AP1",
  "CDK2AP2",
  "CDK2AP2P1",
  "CDK2AP2P2",
  "CDK2AP2P3",
  "CDK3",
  "CDK4",
  "CDK4P1",
  "CDK5",
  "CDK5P1",
  "CDK5R1",
  "CDK5R2",
  "CDK5RAP1",
  "CDK5RAP2",
  "CDK5RAP3",
  "CDK6",
  "CDK7",
  "CDK7P1",
  "CDK8",
  "CDK8P1",
  "CDK8P2",
  "CDK9",
  "CDK10",
  "CDK11A",
  "CDK11B",
  "CDK12",
  "CDK13",
  "CDK14",
  "CDK15",
  "CDK16",
  "CDK17",
  "CDK18",
  "CDK19",
  "CDK20",
  "CDKAL1",
  "CDKL1",
  "CDKL2",
  "CDKL3",
  "CDKL4",
  "CDKL5",
  "CDKN1A",
  "CDKN1A-AS1",
  "CDKN1B",
  "CDKN1C",
  "CDKN2A",
  "CDKN2A-AS1",
  "CDKN2AIP",
  "CDKN2AIPNL",
  "CDKN2AIPNLP1",
  "CDKN2AIPNLP2",
  "CDKN2AIPNLP3",
  "CDKN2B",
  "CDKN2B-AS1",
  "CDKN2C",
  "CDKN2D",
  "CDKN3",
  "CDL1",
  "CDL2",
  "CDNF",
  "CDO1",
  "CDON",
  "CDPF1",
  "CDR1",
  "CDR1-AS",
  "CDR2",
  "CDR2L",
  "CDRT1",
  "CDRT2",
  "CDRT3",
  "CDRT4",
  "CDRT5",
  "CDRT7",
  "CDRT8",
  "CDRT10",
  "CDRT11",
  "CDRT12",
  "CDRT13",
  "CDRT15",
  "CDRT15L2",
  "CDRT15P1",
  "CDRT15P2",
  "CDS1",
  "CDS2",
  "CDSN",
  "CDT1",
  "CDV3",
  "CDV3P1",
  "CDX1",
  "CDX2",
  "CDX4",
  "CDY1",
  "CDY1B",
  "CDY2A",
  "CDY2B",
  "CDY3P",
  "CDY4P",
  "CDY5P",
  "CDY6P",
  "CDY7P",
  "CDY8P",
  "CDY9P",
  "CDY10P",
  "CDY11P",
  "CDY12P",
  "CDY13P",
  "CDY14P",
  "CDY15P",
  "CDY16P",
  "CDY17P",
  "CDY18P",
  "CDY19P",
  "CDY20P",
  "CDY21P",
  "CDY22P",
  "CDY23P",
  "CDYL",
  "CDYL2",
  "CDYP",
  "CEACAM1",
  "CEACAM3",
  "CEACAM4",
  "CEACAM5",
  "CEACAM6",
  "CEACAM7",
  "CEACAM8",
  "CEACAM16",
  "CEACAM18",
  "CEACAM19",
  "CEACAM20",
  "CEACAM21",
  "CEACAM22P",
  "CEACAMP1",
  "CEACAMP2",
  "CEACAMP3",
  "CEACAMP4",
  "CEACAMP5",
  "CEACAMP6",
  "CEACAMP7",
  "CEACAMP8",
  "CEACAMP9",
  "CEACAMP10",
  "CEACAMP11",
  "CEAL1",
  "CEBPA",
  "CEBPA-AS1",
  "CEBPB",
  "CEBPB-AS1",
  "CEBPD",
  "CEBPE",
  "CEBPG",
  "CEBPZ",
  "CEBPZOS",
  "CECR",
  "CECR1",
  "CECR2",
  "CECR3",
  "CECR5",
  "CECR5-AS1",
  "CECR6",
  "CECR7",
  "CECR9",
  "CEL",
  "CELA1",
  "CELA2A",
  "CELA2B",
  "CELA3A",
  "CELA3B",
  "CELF1",
  "CELF2",
  "CELF2-AS1",
  "CELF2-AS2",
  "CELF3",
  "CELF4",
  "CELF5",
  "CELF6",
  "CELIAC2",
  "CELP",
  "CELSR1",
  "CELSR2",
  "CELSR3",
  "CELSR3-AS1",
  "CEMIP",
  "CEMP1",
  "CEND1",
  "CEND1P1",
  "CEND1P2",
  "CENPA",
  "CENPB",
  "CENPBD1",
  "CENPBD1P1",
  "CENPC",
  "CENPCP1",
  "CENPE",
  "CENPF",
  "CENPH",
  "CENPI",
  "CENPIP1",
  "CENPJ",
  "CENPK",
  "CENPL",
  "CENPM",
  "CENPN",
  "CENPO",
  "CENPP",
  "CENPQ",
  "CENPS",
  "CENPT",
  "CENPU",
  "CENPUP1",
  "CENPUP2",
  "CENPV",
  "CENPVL1",
  "CENPVL2",
  "CENPVL3",
  "CENPW",
  "CENPX",
  "CEP19",
  "CEP41",
  "CEP44",
  "CEP55",
  "CEP57",
  "CEP57L1",
  "CEP57L1P1",
  "CEP63",
  "CEP68",
  "CEP70",
  "CEP72",
  "CEP76",
  "CEP78",
  "CEP83",
  "CEP83-AS1",
  "CEP85",
  "CEP85L",
  "CEP89",
  "CEP95",
  "CEP97",
  "CEP104",
  "CEP112",
  "CEP120",
  "CEP126",
  "CEP128",
  "CEP131",
  "CEP135",
  "CEP152",
  "CEP162",
  "CEP164",
  "CEP164P1",
  "CEP170",
  "CEP170B",
  "CEP170P1",
  "CEP192",
  "CEP250",
  "CEP290",
  "CEP295",
  "CEP295NL",
  "CEP350",
  "CEPA",
  "CEPO",
  "CEPT1",
  "CER1",
  "CERCAM",
  "CERK",
  "CERKL",
  "CERS1",
  "CERS2",
  "CERS3",
  "CERS3-AS1",
  "CERS4",
  "CERS5",
  "CERS6",
  "CERS6-AS1",
  "CES1",
  "CES1P1",
  "CES1P2",
  "CES2",
  "CES3",
  "CES4A",
  "CES5A",
  "CES5AP1",
  "CETN1",
  "CETN2",
  "CETN3",
  "CETN4P",
  "CETP",
  "CFAP20",
  "CFAP36",
  "CFAP43",
  "CFAP44",
  "CFAP44-AS1",
  "CFAP45",
  "CFAP46",
  "CFAP47",
  "CFAP52",
  "CFAP53",
  "CFAP54",
  "CFAP57",
  "CFAP58",
  "CFAP58-AS1",
  "CFAP61",
  "CFAP65",
  "CFAP69",
  "CFAP70",
  "CFAP73",
  "CFAP74",
  "CFAP77",
  "CFAP97",
  "CFAP99",
  "CFAP100",
  "CFAP126",
  "CFAP157",
  "CFAP161",
  "CFAP206",
  "CFAP221",
  "CFB",
  "CFC1",
  "CFC1B",
  "CFD",
  "CFDP1",
  "CFH",
  "CFHR1",
  "CFHR2",
  "CFHR3",
  "CFHR4",
  "CFHR5",
  "CFI",
  "CFL1",
  "CFL1P1",
  "CFL1P2",
  "CFL1P3",
  "CFL1P4",
  "CFL1P5",
  "CFL1P6",
  "CFL1P7",
  "CFL1P8",
  "CFL2",
  "CFLAR",
  "CFLAR-AS1",
  "CFM1",
  "CFM2",
  "CFP",
  "CFTR",
  "CFTRP1",
  "CFTRP2",
  "CFTRP3",
  "CGA",
  "CGB1",
  "CGB2",
  "CGB3",
  "CGB5",
  "CGB7",
  "CGB8",
  "CGF1",
  "CGGBP1",
  "CGN",
  "CGNL1",
  "CGREF1",
  "CGRRF1",
  "CH25H",
  "CHAC1",
  "CHAC2",
  "CHAD",
  "CHADL",
  "CHAF1A",
  "CHAF1B",
  "CHAMP1",
  "CHAT",
  "CHCHD1",
  "CHCHD2",
  "CHCHD2P1",
  "CHCHD2P2",
  "CHCHD2P3",
  "CHCHD2P4",
  "CHCHD2P5",
  "CHCHD2P6",
  "CHCHD2P7",
  "CHCHD2P8",
  "CHCHD2P9",
  "CHCHD2P10",
  "CHCHD2P11",
  "CHCHD3",
  "CHCHD3P1",
  "CHCHD3P2",
  "CHCHD3P3",
  "CHCHD4",
  "CHCHD4P1",
  "CHCHD4P2",
  "CHCHD4P3",
  "CHCHD4P4",
  "CHCHD4P5",
  "CHCHD5",
  "CHCHD6",
  "CHCHD7",
  "CHCHD10",
  "CHD1",
  "CHD1L",
  "CHD2",
  "CHD3",
  "CHD4",
  "CHD5",
  "CHD6",
  "CHD7",
  "CHD8",
  "CHD9",
  "CHDH",
  "CHED1",
  "CHEK1",
  "CHEK2",
  "CHEK2P1",
  "CHEK2P2",
  "CHEK2P3",
  "CHEK2P4",
  "CHEK2P5",
  "CHEL1",
  "CHEL3",
  "CHERP",
  "CHES1L1",
  "CHFR",
  "CHGA",
  "CHGB",
  "CHI3L1",
  "CHI3L2",
  "CHIA",
  "CHIAP1",
  "CHIAP2",
  "CHIAP3",
  "CHIC1",
  "CHIC2",
  "CHID1",
  "CHIT1",
  "CHKA",
  "CHKB",
  "CHKB-AS1",
  "CHKB-CPT1B",
  "CHL1",
  "CHL1-AS1",
  "CHL1-AS2",
  "CHM",
  "CHML",
  "CHMP1A",
  "CHMP1AP1",
  "CHMP1B",
  "CHMP1B2P",
  "CHMP2A",
  "CHMP2B",
  "CHMP3",
  "CHMP4A",
  "CHMP4B",
  "CHMP4BP1",
  "CHMP4C",
  "CHMP5",
  "CHMP6",
  "CHMP7",
  "CHN1",
  "CHN2",
  "CHODL",
  "CHODL-AS1",
  "CHORDC1",
  "CHORDC2P",
  "CHP1",
  "CHP2",
  "CHPF",
  "CHPF2",
  "CHPT1",
  "CHR",
  "CHRAC1",
  "CHRD",
  "CHRDL1",
  "CHRDL2",
  "CHRFAM7A",
  "CHRFAM7AP1",
  "CHRFAM7AP2",
  "CHRM1",
  "CHRM2",
  "CHRM3",
  "CHRM3-AS1",
  "CHRM3-AS2",
  "CHRM4",
  "CHRM5",
  "CHRNA1",
  "CHRNA2",
  "CHRNA3",
  "CHRNA4",
  "CHRNA5",
  "CHRNA6",
  "CHRNA7",
  "CHRNA9",
  "CHRNA10",
  "CHRNB1",
  "CHRNB2",
  "CHRNB3",
  "CHRNB4",
  "CHRND",
  "CHRNE",
  "CHRNG",
  "CHST1",
  "CHST2",
  "CHST3",
  "CHST4",
  "CHST5",
  "CHST6",
  "CHST7",
  "CHST8",
  "CHST9",
  "CHST10",
  "CHST11",
  "CHST12",
  "CHST13",
  "CHST14",
  "CHST15",
  "CHSY1",
  "CHSY3",
  "CHTF8",
  "CHTF8P1",
  "CHTF18",
  "CHTOP",
  "CHUK",
  "CHURC1",
  "CHURC1-FNTB",
  "CIAO1",
  "CIAPIN1",
  "CIAPIN1P",
  "CIART",
  "CIB1",
  "CIB2",
  "CIB3",
  "CIB4",
  "CIC",
  "CICP1",
  "CICP2",
  "CICP3",
  "CICP4",
  "CICP5",
  "CICP6",
  "CICP7",
  "CICP8",
  "CICP9",
  "CICP10",
  "CICP11",
  "CICP12",
  "CICP13",
  "CICP14",
  "CICP15",
  "CICP16",
  "CICP17",
  "CICP18",
  "CICP19",
  "CICP20",
  "CICP21",
  "CICP22",
  "CICP23",
  "CICP24",
  "CICP25",
  "CICP26",
  "CICP27",
  "CICP28",
  "CIDEA",
  "CIDEB",
  "CIDEC",
  "CIDECP",
  "CIITA",
  "CILP",
  "CILP2",
  "CINP",
  "CIPC",
  "CIPO",
  "CIR1",
  "CIR1P1",
  "CIR1P2",
  "CIR1P3",
  "CIRBP",
  "CIRBP-AS1",
  "CISD1",
  "CISD1P1",
  "CISD2",
  "CISD3",
  "CISH",
  "CISTR",
  "CIT",
  "CITED1",
  "CITED2",
  "CITED4",
  "CIZ1",
  "CKAP2",
  "CKAP2L",
  "CKAP2P1",
  "CKAP4",
  "CKAP5",
  "CKB",
  "CKBE",
  "CKBP1",
  "CKLF",
  "CKLF-CMTM1",
  "CKM",
  "CKMT1A",
  "CKMT1B",
  "CKMT2",
  "CKMT2-AS1",
  "CKS1B",
  "CKS1BP1",
  "CKS1BP2",
  "CKS1BP3",
  "CKS1BP4",
  "CKS1BP5",
  "CKS1BP6",
  "CKS1BP7",
  "CKS2",
  "CLA3",
  "CLAM",
  "CLASP1",
  "CLASP2",
  "CLASRP",
  "CLC",
  "CLCA1",
  "CLCA2",
  "CLCA3P",
  "CLCA4",
  "CLCC1",
  "CLCF1",
  "CLCN1",
  "CLCN2",
  "CLCN3",
  "CLCN3P1",
  "CLCN4",
  "CLCN5",
  "CLCN6",
  "CLCN7",
  "CLCNKA",
  "CLCNKB",
  "CLCNL1",
  "CLCNL2",
  "CLCP1",
  "CLCP2",
  "CLDN1",
  "CLDN2",
  "CLDN3",
  "CLDN4",
  "CLDN5",
  "CLDN6",
  "CLDN7",
  "CLDN8",
  "CLDN9",
  "CLDN10",
  "CLDN10-AS1",
  "CLDN11",
  "CLDN11CL",
  "CLDN12",
  "CLDN14",
  "CLDN15",
  "CLDN16",
  "CLDN17",
  "CLDN18",
  "CLDN19",
  "CLDN20",
  "CLDN22",
  "CLDN23",
  "CLDN24",
  "CLDN25",
  "CLDN34",
  "CLDND1",
  "CLDND2",
  "CLEC1A",
  "CLEC1B",
  "CLEC2A",
  "CLEC2B",
  "CLEC2D",
  "CLEC2L",
  "CLEC3A",
  "CLEC3B",
  "CLEC4A",
  "CLEC4C",
  "CLEC4D",
  "CLEC4E",
  "CLEC4F",
  "CLEC4G",
  "CLEC4GP1",
  "CLEC4M",
  "CLEC5A",
  "CLEC6A",
  "CLEC7A",
  "CLEC9A",
  "CLEC10A",
  "CLEC11A",
  "CLEC12A",
  "CLEC12B",
  "CLEC14A",
  "CLEC16A",
  "CLEC17A",
  "CLEC18A",
  "CLEC18B",
  "CLEC18C",
  "CLEC19A",
  "CLECL1",
  "CLGN",
  "CLHC1",
  "CLIC1",
  "CLIC1P1",
  "CLIC2",
  "CLIC3",
  "CLIC4",
  "CLIC4P1",
  "CLIC4P2",
  "CLIC4P3",
  "CLIC5",
  "CLIC6",
  "CLINT1",
  "CLIP1",
  "CLIP1-AS1",
  "CLIP2",
  "CLIP3",
  "CLIP4",
  "CLK1",
  "CLK2",
  "CLK2P1",
  "CLK3",
  "CLK3P1",
  "CLK3P2",
  "CLK4",
  "CLLU1",
  "CLLU1OS",
  "CLMN",
  "CLMP",
  "CLN3",
  "CLN5",
  "CLN6",
  "CLN8",
  "CLN9",
  "CLNK",
  "CLNS1A",
  "CLNS1AP1",
  "CLOCK",
  "CLP1",
  "CLPB",
  "CLPP",
  "CLPS",
  "CLPSL1",
  "CLPSL2",
  "CLPTM1",
  "CLPTM1L",
  "CLPTM1LP1",
  "CLPX",
  "CLRN1",
  "CLRN1-AS1",
  "CLRN2",
  "CLRN3",
  "CLSPN",
  "CLSTN1",
  "CLSTN2",
  "CLSTN2-AS1",
  "CLSTN3",
  "CLTA",
  "CLTB",
  "CLTC",
  "CLTC-IT1",
  "CLTCL1",
  "CLU",
  "CLUAP1",
  "CLUH",
  "CLUHP1",
  "CLUHP2",
  "CLUHP3",
  "CLUHP4",
  "CLUHP5",
  "CLUHP6",
  "CLUHP7",
  "CLUHP8",
  "CLUHP9",
  "CLUHP10",
  "CLUHP11",
  "CLUL1",
  "CLVS1",
  "CLVS2",
  "CLYBL",
  "CLYBL-AS1",
  "CLYBL-AS2",
  "CLYBL-IT1",
  "CMA1",
  "CMAHP",
  "CMAS",
  "CMBL",
  "CMC1",
  "CMC2",
  "CMC4",
  "CMD1B",
  "CMD1F",
  "CMD1H",
  "CMD1K",
  "CMD1Q",
  "CMIP",
  "CMKLR1",
  "CMM",
  "CMPK1",
  "CMPK2",
  "CMR1A",
  "CMR2A",
  "CMR3A",
  "CMSS1",
  "CMT1A",
  "CMT2B",
  "CMTM1",
  "CMTM2",
  "CMTM3",
  "CMTM4",
  "CMTM5",
  "CMTM6",
  "CMTM7",
  "CMTM8",
  "CMTR1",
  "CMTR2",
  "CMTX2",
  "CMTX3",
  "CMYA5",
  "CNA1",
  "CNBD1",
  "CNBD2",
  "CNBP",
  "CNC2",
  "CNDP1",
  "CNDP2",
  "CNEP1R1",
  "CNFN",
  "CNGA1",
  "CNGA2",
  "CNGA3",
  "CNGA4",
  "CNGB1",
  "CNGB3",
  "CNIH1",
  "CNIH2",
  "CNIH3",
  "CNIH4",
  "CNKSR1",
  "CNKSR2",
  "CNKSR3",
  "CNMD",
  "CNN1",
  "CNN2",
  "CNN2P1",
  "CNN2P2",
  "CNN2P3",
  "CNN2P4",
  "CNN2P6",
  "CNN2P7",
  "CNN2P8",
  "CNN2P9",
  "CNN2P10",
  "CNN2P11",
  "CNN2P12",
  "CNN3",
  "CNN3P1",
  "CNNM1",
  "CNNM2",
  "CNNM3",
  "CNNM4",
  "CNOT1",
  "CNOT2",
  "CNOT3",
  "CNOT4",
  "CNOT4P1",
  "CNOT5",
  "CNOT6",
  "CNOT6L",
  "CNOT6LP1",
  "CNOT7",
  "CNOT7P1",
  "CNOT7P2",
  "CNOT8",
  "CNOT9",
  "CNOT10",
  "CNOT10-AS1",
  "CNOT11",
  "CNP",
  "CNPPD1",
  "CNPY1",
  "CNPY2",
  "CNPY3",
  "CNPY4",
  "CNR1",
  "CNR2",
  "CNRIP1",
  "CNST",
  "CNTD1",
  "CNTD2",
  "CNTF",
  "CNTFR",
  "CNTFR-AS1",
  "CNTLN",
  "CNTN1",
  "CNTN2",
  "CNTN3",
  "CNTN4",
  "CNTN4-AS1",
  "CNTN4-AS2",
  "CNTN5",
  "CNTN6",
  "CNTNAP1",
  "CNTNAP2",
  "CNTNAP3",
  "CNTNAP3B",
  "CNTNAP3P1",
  "CNTNAP3P2",
  "CNTNAP3P3",
  "CNTNAP3P4",
  "CNTNAP3P5",
  "CNTNAP3P6",
  "CNTNAP3P7",
  "CNTNAP3P8",
  "CNTNAP3P9",
  "CNTNAP4",
  "CNTNAP5",
  "CNTRL",
  "CNTROB",
  "COA1",
  "COA3",
  "COA4",
  "COA5",
  "COA6",
  "COA7",
  "COASY",
  "COBL",
  "COBLL1",
  "COCH",
  "COD2",
  "COG1",
  "COG2",
  "COG3",
  "COG4",
  "COG5",
  "COG6",
  "COG7",
  "COG8",
  "COIL",
  "COILP1",
  "COILP2",
  "COL1A1",
  "COL1A2",
  "COL1AR",
  "COL2A1",
  "COL3A1",
  "COL4A1",
  "COL4A2",
  "COL4A2-AS1",
  "COL4A2-AS2",
  "COL4A3",
  "COL4A3BP",
  "COL4A4",
  "COL4A5",
  "COL4A6",
  "COL5A1",
  "COL5A1-AS1",
  "COL5A2",
  "COL5A3",
  "COL6A1",
  "COL6A2",
  "COL6A3",
  "COL6A4P1",
  "COL6A4P2",
  "COL6A5",
  "COL6A6",
  "COL7A1",
  "COL8A1",
  "COL8A2",
  "COL9A1",
  "COL9A2",
  "COL9A3",
  "COL10A1",
  "COL11A1",
  "COL11A2",
  "COL11A2P1",
  "COL12A1",
  "COL13A1",
  "COL14A1",
  "COL15A1",
  "COL16A1",
  "COL17A1",
  "COL18A1",
  "COL18A1-AS1",
  "COL18A1-AS2",
  "COL19A1",
  "COL20A1",
  "COL21A1",
  "COL22A1",
  "COL23A1",
  "COL24A1",
  "COL25A1",
  "COL26A1",
  "COL27A1",
  "COL28A1",
  "COLCA1",
  "COLCA2",
  "COLEC10",
  "COLEC11",
  "COLEC12",
  "COLGALT1",
  "COLGALT2",
  "COLOT1",
  "COLQ",
  "COMMD1",
  "COMMD2",
  "COMMD3",
  "COMMD3-BMI1",
  "COMMD4",
  "COMMD5",
  "COMMD6",
  "COMMD7",
  "COMMD8",
  "COMMD9",
  "COMMD10",
  "COMP",
  "COMT",
  "COMTD1",
  "COPA",
  "COPB1",
  "COPB2",
  "COPE",
  "COPG1",
  "COPG2",
  "COPG2IT1",
  "COPRS",
  "COPS2",
  "COPS3",
  "COPS4",
  "COPS5",
  "COPS5P1",
  "COPS5P2",
  "COPS6",
  "COPS7A",
  "COPS7B",
  "COPS8",
  "COPS8P1",
  "COPS8P2",
  "COPS8P3",
  "COPS9",
  "COPZ1",
  "COPZ2",
  "COP",
  "COQ2",
  "COQ3",
  "COQ4",
  "COQ5",
  "COQ6",
  "COQ7",
  "COQ8A",
  "COQ8B",
  "COQ9",
  "COQ10A",
  "COQ10B",
  "COQ10BP1",
  "COQ10BP2",
  "CORD1",
  "CORD4",
  "CORD8",
  "CORD17",
  "CORIN",
  "CORO1A",
  "CORO1B",
  "CORO1C",
  "CORO2A",
  "CORO2B",
  "CORO6",
  "CORO7",
  "CORO7-PAM16",
  "CORT",
  "COTL1",
  "COTL1P1",
  "COTL1P2",
  "COX4I1",
  "COX4I1P1",
  "COX4I1P2",
  "COX4I2",
  "COX5A",
  "COX5AP1",
  "COX5AP2",
  "COX5B",
  "COX5BP1",
  "COX5BP2",
  "COX5BP3",
  "COX5BP4",
  "COX5BP5",
  "COX5BP6",
  "COX5BP7",
  "COX5BP8",
  "COX6A1",
  "COX6A1P1",
  "COX6A1P2",
  "COX6A1P3",
  "COX6A2",
  "COX6B1",
  "COX6B1P1",
  "COX6B1P2",
  "COX6B1P3",
  "COX6B1P4",
  "COX6B1P5",
  "COX6B1P6",
  "COX6B1P7",
  "COX6B2",
  "COX6C",
  "COX6CP1",
  "COX6CP2",
  "COX6CP3",
  "COX6CP4",
  "COX6CP5",
  "COX6CP6",
  "COX6CP7",
  "COX6CP8",
  "COX6CP9",
  "COX6CP10",
  "COX6CP11",
  "COX6CP12",
  "COX6CP13",
  "COX6CP14",
  "COX6CP15",
  "COX6CP16",
  "COX6CP17",
  "COX6CP18",
  "COX7A1",
  "COX7A2",
  "COX7A2L",
  "COX7A2P1",
  "COX7A2P2",
  "COX7B",
  "COX7B2",
  "COX7BP1",
  "COX7BP2",
  "COX7C",
  "COX7CP1",
  "COX8A",
  "COX8BP",
  "COX8C",
  "COX10",
  "COX10-AS1",
  "COX11",
  "COX11P1",
  "COX14",
  "COX15",
  "COX16",
  "COX17",
  "COX17P1",
  "COX18",
  "COX19",
  "COX20",
  "COX20P1",
  "COX20P2",
  "CP",
  "CPA1",
  "CPA2",
  "CPA3",
  "CPA4",
  "CPA5",
  "CPA6",
  "CPAMD8",
  "CPAT1",
  "CPB1",
  "CPB2",
  "CPB2-AS1",
  "CPD",
  "CPE",
  "CPEB1",
  "CPEB1-AS1",
  "CPEB2",
  "CPEB2-AS1",
  "CPEB3",
  "CPEB4",
  "CPED1",
  "CPHL1P",
  "CPHXL",
  "CPL1",
  "CPLX1",
  "CPLX2",
  "CPLX3",
  "CPLX4",
  "CPM",
  "CPN1",
  "CPN2",
  "CPNE1",
  "CPNE2",
  "CPNE3",
  "CPNE4",
  "CPNE5",
  "CPNE6",
  "CPNE7",
  "CPNE8",
  "CPNE9",
  "CPO",
  "CPOX",
  "CPP",
  "CPPED1",
  "CPQ",
  "CPS1",
  "CPS1-IT1",
  "CPSF1",
  "CPSF1P1",
  "CPSF2",
  "CPSF3",
  "CPSF3L",
  "CPSF4",
  "CPSF4L",
  "CPSF6",
  "CPSF7",
  "CPT1A",
  "CPT1B",
  "CPT1C",
  "CPT2",
  "CPT2P1",
  "CPTP",
  "CPVL",
  "CPXCR1",
  "CPXM1",
  "CPXM2",
  "CPZ",
  "CR1",
  "CR1L",
  "CR2",
  "CRABP1",
  "CRABP2",
  "CRACR2A",
  "CRACR2B",
  "CRADD",
  "CRAMP1",
  "CRAT",
  "CRB1",
  "CRB2",
  "CRB3",
  "CRB3P1",
  "CRBN",
  "CRCP",
  "CRCT1",
  "CREB1",
  "CREB3",
  "CREB3L1",
  "CREB3L2",
  "CREB3L3",
  "CREB3L4",
  "CREB5",
  "CREBBP",
  "CREBL2",
  "CREBRF",
  "CREBZF",
  "CREG1",
  "CREG2",
  "CRELD1",
  "CRELD2",
  "CREM",
  "CRH",
  "CRHBP",
  "CRHR1",
  "CRHR1-IT1",
  "CRHR2",
  "CRIM1",
  "CRIP1",
  "CRIP1P1",
  "CRIP1P2",
  "CRIP1P3",
  "CRIP1P4",
  "CRIP2",
  "CRIP3",
  "CRIPAK",
  "CRIPT",
  "CRISP1",
  "CRISP2",
  "CRISP3",
  "CRISPLD1",
  "CRISPLD2",
  "CRK",
  "CRKL",
  "CRLF1",
  "CRLF2",
  "CRLF3",
  "CRLS1",
  "CRMP1",
  "CRNDE",
  "CRNKL1",
  "CRNN",
  "CROCC",
  "CROCC2",
  "CROCCP1",
  "CROCCP2",
  "CROCCP3",
  "CROCCP4",
  "CROCCP5",
  "CROT",
  "CRP",
  "CRPP1",
  "CRSP5",
  "CRTAC1",
  "CRTAM",
  "CRTAP",
  "CRTC1",
  "CRTC2",
  "CRTC3",
  "CRTC3-AS1",
  "CRTL2",
  "CRX",
  "CRY1",
  "CRY2",
  "CRYAA",
  "CRYAB",
  "CRYBA1",
  "CRYBA2",
  "CRYBA4",
  "CRYBB1",
  "CRYBB2",
  "CRYBB2P1",
  "CRYBB3",
  "CRYBG3",
  "CRYGA",
  "CRYGB",
  "CRYGC",
  "CRYGD",
  "CRYGEP",
  "CRYGFP",
  "CRYGGP",
  "CRYGN",
  "CRYGP1",
  "CRYGP2",
  "CRYGS",
  "CRYL1",
  "CRYM",
  "CRYM-AS1",
  "CRYZ",
  "CRYZL1",
  "CRYZP1",
  "CRYZP2",
  "CS",
  "CSAD",
  "CSAG1",
  "CSAG2",
  "CSAG3",
  "CSAG4",
  "CSDC2",
  "CSDE1",
  "CSE1L",
  "CSE1L-AS1",
  "CSF1",
  "CSF1R",
  "CSF2",
  "CSF2RA",
  "CSF2RB",
  "CSF2RBP1",
  "CSF3",
  "CSF3R",
  "CSGALNACT1",
  "CSGALNACT2",
  "CSH1",
  "CSH2",
  "CSHL1",
  "CSK",
  "CSMD1",
  "CSMD2",
  "CSMD2-AS1",
  "CSMD3",
  "CSN1S1",
  "CSN1S2AP",
  "CSN1S2BP",
  "CSN2",
  "CSN3",
  "CSNK1A1",
  "CSNK1A1L",
  "CSNK1A1P1",
  "CSNK1A1P2",
  "CSNK1A1P3",
  "CSNK1D",
  "CSNK1E",
  "CSNK1G1",
  "CSNK1G2",
  "CSNK1G2-AS1",
  "CSNK1G2P1",
  "CSNK1G3",
  "CSNK2A1",
  "CSNK2A2",
  "CSNK2A3",
  "CSNK2B",
  "CSPG4",
  "CSPG4P1Y",
  "CSPG4P2Y",
  "CSPG4P3Y",
  "CSPG4P4Y",
  "CSPG4P5",
  "CSPG4P8",
  "CSPG4P9",
  "CSPG4P10",
  "CSPG4P11",
  "CSPG4P12",
  "CSPG4P13",
  "CSPG5",
  "CSPP1",
  "CSRNP1",
  "CSRNP2",
  "CSRNP3",
  "CSRP1",
  "CSRP2",
  "CSRP2P1",
  "CSRP3",
  "CST1",
  "CST2",
  "CST2P1",
  "CST3",
  "CST4",
  "CST5",
  "CST6",
  "CST7",
  "CST8",
  "CST9",
  "CST9L",
  "CST9LP1",
  "CST9LP2",
  "CST11",
  "CST12P",
  "CST13P",
  "CSTA",
  "CSTB",
  "CSTF1",
  "CSTF2",
  "CSTF2T",
  "CSTF3",
  "CSTF3-AS1",
  "CSTL1",
  "CSTP1",
  "CSTP2",
  "CT45A1",
  "CT45A2",
  "CT45A3",
  "CT45A5",
  "CT45A6",
  "CT45A7",
  "CT45A8",
  "CT45A9",
  "CT45A10",
  "CT45A11P",
  "CT45B1P",
  "CT47A1",
  "CT47A2",
  "CT47A3",
  "CT47A4",
  "CT47A5",
  "CT47A6",
  "CT47A7",
  "CT47A8",
  "CT47A9",
  "CT47A10",
  "CT47A11",
  "CT47A12",
  "CT47B1",
  "CT55",
  "CT62",
  "CT83",
  "CTAA1",
  "CTAA2",
  "CTAG1A",
  "CTAG1B",
  "CTAG2",
  "CTAGE1",
  "CTAGE3P",
  "CTAGE4",
  "CTAGE5",
  "CTAGE6",
  "CTAGE7P",
  "CTAGE8",
  "CTAGE9",
  "CTAGE10P",
  "CTAGE11P",
  "CTAGE12P",
  "CTAGE13P",
  "CTAGE14P",
  "CTAGE15",
  "CTAGE16P",
  "CTBP1",
  "CTBP1-AS",
  "CTBP1-AS2",
  "CTBP2",
  "CTBP2P1",
  "CTBP2P2",
  "CTBP2P3",
  "CTBP2P4",
  "CTBP2P5",
  "CTBP2P6",
  "CTBP2P7",
  "CTBP2P8",
  "CTBS",
  "CTC1",
  "CTCF",
  "CTCFL",
  "CTD",
  "CTDNEP1",
  "CTDP1",
  "CTDSP1",
  "CTDSP2",
  "CTDSPL",
  "CTDSPL2",
  "CTF1",
  "CTF2P",
  "CTGF",
  "CTGLF8P",
  "CTH",
  "CTHM",
  "CTHRC1",
  "CTHRC1P1",
  "CTIF",
  "CTLA4",
  "CTNNA1",
  "CTNNA1P1",
  "CTNNA2",
  "CTNNA3",
  "CTNNAL1",
  "CTNNB1",
  "CTNNBIP1",
  "CTNNBL1",
  "CTNND1",
  "CTNND2",
  "CTNS",
  "CTPL1",
  "CTPS1",
  "CTPS2",
  "CTR9",
  "CTRB1",
  "CTRB2",
  "CTRC",
  "CTRL",
  "CTSA",
  "CTSB",
  "CTSC",
  "CTSD",
  "CTSE",
  "CTSF",
  "CTSG",
  "CTSGL1",
  "CTSH",
  "CTSK",
  "CTSL",
  "CTSL3P",
  "CTSLP1",
  "CTSLP2",
  "CTSLP3",
  "CTSLP4",
  "CTSLP6",
  "CTSLP8",
  "CTSO",
  "CTSS",
  "CTSV",
  "CTSW",
  "CTSZ",
  "CTTN",
  "CTTNBP2",
  "CTTNBP2NL",
  "CTU1",
  "CTU2",
  "CTXN1",
  "CTXN2",
  "CTXN3",
  "CUBN",
  "CUBNP1",
  "CUBNP2",
  "CUBNP3",
  "CUEDC1",
  "CUEDC2",
  "CUL1",
  "CUL1P1",
  "CUL2",
  "CUL3",
  "CUL4A",
  "CUL4AP1",
  "CUL4B",
  "CUL5",
  "CUL7",
  "CUL9",
  "CUTA",
  "CUTC",
  "CUX1",
  "CUX2",
  "CUX2P1",
  "CUX2P2",
  "CUZD1",
  "CWC15",
  "CWC22",
  "CWC25",
  "CWC27",
  "CWF19L1",
  "CWF19L2",
  "CWH43",
  "CX3CL1",
  "CX3CR1",
  "CXADR",
  "CXADRP1",
  "CXADRP2",
  "CXADRP3",
  "CXB3S",
  "CXCL1",
  "CXCL1P1",
  "CXCL2",
  "CXCL3",
  "CXCL5",
  "CXCL6",
  "CXCL8",
  "CXCL9",
  "CXCL10",
  "CXCL11",
  "CXCL12",
  "CXCL13",
  "CXCL14",
  "CXCL16",
  "CXCL17",
  "CXCR1",
  "CXCR2",
  "CXCR2P1",
  "CXCR3",
  "CXCR4",
  "CXCR5",
  "CXCR6",
  "CXorf21",
  "CXorf23",
  "CXorf36",
  "CXorf38",
  "CXorf40A",
  "CXorf40B",
  "CXorf49",
  "CXorf49B",
  "CXorf51A",
  "CXorf51B",
  "CXorf56",
  "CXorf57",
  "CXorf58",
  "CXorf65",
  "CXorf66",
  "CXorf67",
  "CXXC1",
  "CXXC1P1",
  "CXXC4",
  "CXXC5",
  "CYB5A",
  "CYB5AP1",
  "CYB5AP2",
  "CYB5AP3",
  "CYB5AP4",
  "CYB5AP5",
  "CYB5B",
  "CYB5D1",
  "CYB5D2",
  "CYB5R1",
  "CYB5R2",
  "CYB5R3",
  "CYB5R4",
  "CYB5RL",
  "CYB561",
  "CYB561A3",
  "CYB561D1",
  "CYB561D2",
  "CYBA",
  "CYBB",
  "CYBRD1",
  "CYC1",
  "CYCS",
  "CYCSP1",
  "CYCSP2",
  "CYCSP3",
  "CYCSP4",
  "CYCSP5",
  "CYCSP6",
  "CYCSP7",
  "CYCSP8",
  "CYCSP10",
  "CYCSP11",
  "CYCSP12",
  "CYCSP14",
  "CYCSP16",
  "CYCSP17",
  "CYCSP18",
  "CYCSP19",
  "CYCSP20",
  "CYCSP22",
  "CYCSP23",
  "CYCSP24",
  "CYCSP25",
  "CYCSP26",
  "CYCSP27",
  "CYCSP28",
  "CYCSP29",
  "CYCSP30",
  "CYCSP32",
  "CYCSP33",
  "CYCSP34",
  "CYCSP35",
  "CYCSP38",
  "CYCSP39",
  "CYCSP40",
  "CYCSP41",
  "CYCSP42",
  "CYCSP43",
  "CYCSP44",
  "CYCSP45",
  "CYCSP46",
  "CYCSP48",
  "CYCSP49",
  "CYCSP51",
  "CYCSP52",
  "CYCSP53",
  "CYCSP55",
  "CYCTP",
  "CYFIP1",
  "CYFIP2",
  "CYGB",
  "CYHR1",
  "CYLC1",
  "CYLC2",
  "CYLD",
  "CYMD",
  "CYMP",
  "CYP1A1",
  "CYP1A2",
  "CYP1B1",
  "CYP1B1-AS1",
  "CYP1D1P",
  "CYP2A6",
  "CYP2A7",
  "CYP2A7P1",
  "CYP2A13",
  "CYP2AB1P",
  "CYP2AC1P",
  "CYP2A",
  "CYP2B6",
  "CYP2B7P",
  "CYP2C8",
  "CYP2C9",
  "CYP2C18",
  "CYP2C19",
  "CYP2C23P",
  "CYP2C56P",
  "CYP2C58P",
  "CYP2C59P",
  "CYP2C60P",
  "CYP2C61P",
  "CYP2C63P",
  "CYP2C64P",
  "CYP2C115P",
  "CYP2D6",
  "CYP2D7",
  "CYP2D8P",
  "CYP2E1",
  "CYP2F1",
  "CYP2F2P",
  "CYP2G1P",
  "CYP2G2P",
  "CYP2J2",
  "CYP2R1",
  "CYP2S1",
  "CYP2T1P",
  "CYP2T3P",
  "CYP2U1",
  "CYP2W1",
  "CYP3A4",
  "CYP3A5",
  "CYP3A5P2",
  "CYP3A7",
  "CYP3A7-CYP3A51P",
  "CYP3A43",
  "CYP3A51P",
  "CYP3A52P",
  "CYP3A54P",
  "CYP3A137P",
  "CYP3A",
  "CYP4A11",
  "CYP4A22",
  "CYP4A22-AS1",
  "CYP4A26P",
  "CYP4A27P",
  "CYP4A43P",
  "CYP4A44P",
  "CYP4B1",
  "CYP4F2",
  "CYP4F3",
  "CYP4F8",
  "CYP4F9P",
  "CYP4F10P",
  "CYP4F11",
  "CYP4F12",
  "CYP4F22",
  "CYP4F23P",
  "CYP4F24P",
  "CYP4F25P",
  "CYP4F26P",
  "CYP4F27P",
  "CYP4F29P",
  "CYP4F30P",
  "CYP4F31P",
  "CYP4F32P",
  "CYP4F33P",
  "CYP4F34P",
  "CYP4F35P",
  "CYP4F36P",
  "CYP4F44P",
  "CYP4F45P",
  "CYP4F59P",
  "CYP4F60P",
  "CYP4F61P",
  "CYP4F62P",
  "CYP4V2",
  "CYP4X1",
  "CYP4Z1",
  "CYP4Z2P",
  "CYP7A1",
  "CYP7B1",
  "CYP8B1",
  "CYP11A1",
  "CYP11B1",
  "CYP11B2",
  "CYP17A1",
  "CYP17A1-AS1",
  "CYP19A1",
  "CYP20A1",
  "CYP21A1P",
  "CYP21A2",
  "CYP24A1",
  "CYP26A1",
  "CYP26B1",
  "CYP26C1",
  "CYP27A1",
  "CYP27B1",
  "CYP27C1",
  "CYP39A1",
  "CYP46A1",
  "CYP46A4P",
  "CYP51A1",
  "CYP51A1-AS1",
  "CYP51A1P1",
  "CYP51A1P2",
  "CYP51A1P3",
  "CYR61",
  "CYS1",
  "CYSLTR1",
  "CYSLTR2",
  "CYSRT1",
  "CYSTM1",
  "CYTH1",
  "CYTH2",
  "CYTH3",
  "CYTH4",
  "CYTIP",
  "CYTL1",
  "CYTOR",
  "CYYR1",
  "CYYR1-AS1",
  "CZP2",
  "D2HGDH",
  "DAAM1",
  "DAAM2",
  "DAB1",
  "DAB1-AS1",
  "DAB2",
  "DAB2IP",
  "DACH1",
  "DACH2",
  "DACOR1",
  "DACT1",
  "DACT2",
  "DACT3",
  "DACT3-AS1",
  "DAD1",
  "DAD1P1",
  "DAG1",
  "DAGLA",
  "DAGLB",
  "DALIR",
  "DALRD3",
  "DANCR",
  "DAND5",
  "DANT1",
  "DANT2",
  "DAO",
  "DAOA",
  "DAOA-AS1",
  "DAP",
  "DAP3",
  "DAP3P1",
  "DAP3P2",
  "DAPK1",
  "DAPK1-IT1",
  "DAPK2",
  "DAPK3",
  "DAPL1",
  "DAPP1",
  "DARS",
  "DARS-AS1",
  "DARS2",
  "DAW1",
  "DAXX",
  "DAZ1",
  "DAZ2",
  "DAZ3",
  "DAZ4",
  "DAZAP1",
  "DAZAP2",
  "DAZAP2P1",
  "DAZL",
  "DBET",
  "DBF4",
  "DBF4B",
  "DBF4P1",
  "DBF4P2",
  "DBF4P3",
  "DBH",
  "DBH-AS1",
  "DBI",
  "DBIL3",
  "DBIL4",
  "DBIL5P",
  "DBIL5P2",
  "DBIP1",
  "DBIP2",
  "DBIP3",
  "DBN1",
  "DBNDD1",
  "DBNDD2",
  "DBNL",
  "DBP",
  "DBR1",
  "DBT",
  "DBX1",
  "DBX2",
  "DCAF1",
  "DCAF4",
  "DCAF4L1",
  "DCAF4L2",
  "DCAF5",
  "DCAF6",
  "DCAF7",
  "DCAF8",
  "DCAF8L1",
  "DCAF8L2",
  "DCAF10",
  "DCAF11",
  "DCAF12",
  "DCAF12L1",
  "DCAF12L2",
  "DCAF13",
  "DCAF13P1",
  "DCAF13P2",
  "DCAF13P3",
  "DCAF15",
  "DCAF16",
  "DCAF17",
  "DCAKD",
  "DCANP1",
  "DCBLD1",
  "DCBLD2",
  "DCC",
  "DCD",
  "DCDC1",
  "DCDC2",
  "DCDC2B",
  "DCDC2C",
  "DCDC5",
  "DCHS1",
  "DCHS2",
  "DCK",
  "DCLK1",
  "DCLK2",
  "DCLK3",
  "DCLRE1A",
  "DCLRE1B",
  "DCLRE1C",
  "DCLRE1CP1",
  "DCN",
  "DCP1A",
  "DCP1B",
  "DCP2",
  "DCPS",
  "DCR",
  "DCST1",
  "DCST2",
  "DCSTAMP",
  "DCT",
  "DCTD",
  "DCTN1",
  "DCTN1-AS1",
  "DCTN2",
  "DCTN3",
  "DCTN4",
  "DCTN5",
  "DCTN6",
  "DCTPP1",
  "DCUN1D1",
  "DCUN1D2",
  "DCUN1D2-AS",
  "DCUN1D2-AS1",
  "DCUN1D3",
  "DCUN1D4",
  "DCUN1D5",
  "DCX",
  "DCXR",
  "DDA1",
  "DDAH1",
  "DDAH2",
  "DDB1",
  "DDB2",
  "DDC",
  "DDC-AS1",
  "DDHD1",
  "DDHD2",
  "DDI1",
  "DDI2",
  "DDIAS",
  "DDIT3",
  "DDIT4",
  "DDIT4L",
  "DDN",
  "DDO",
  "DDOST",
  "DDR1",
  "DDR1-AS1",
  "DDR2",
  "DDRGK1",
  "DDT",
  "DDTL",
  "DDTP1",
  "DDU",
  "DDX1",
  "DDX3P1",
  "DDX3P2",
  "DDX3P3",
  "DDX3X",
  "DDX3Y",
  "DDX4",
  "DDX5",
  "DDX6",
  "DDX6P1",
  "DDX6P2",
  "DDX7",
  "DDX10",
  "DDX10P1",
  "DDX10P2",
  "DDX11",
  "DDX11-AS1",
  "DDX11L1",
  "DDX11L2",
  "DDX11L3",
  "DDX11L4",
  "DDX11L5",
  "DDX11L6",
  "DDX11L7",
  "DDX11L8",
  "DDX11L9",
  "DDX11L10",
  "DDX11L11",
  "DDX11L13",
  "DDX11L15",
  "DDX11L16",
  "DDX12P",
  "DDX17",
  "DDX18",
  "DDX18P1",
  "DDX18P2",
  "DDX18P3",
  "DDX18P4",
  "DDX18P5",
  "DDX18P6",
  "DDX19A",
  "DDX19B",
  "DDX20",
  "DDX20P1",
  "DDX21",
  "DDX23",
  "DDX24",
  "DDX25",
  "DDX27",
  "DDX28",
  "DDX31",
  "DDX39A",
  "DDX39AP1",
  "DDX39B",
  "DDX39B-AS1",
  "DDX39BP1",
  "DDX39BP2",
  "DDX41",
  "DDX42",
  "DDX43",
  "DDX43P1",
  "DDX43P2",
  "DDX43P3",
  "DDX46",
  "DDX47",
  "DDX49",
  "DDX50",
  "DDX50P1",
  "DDX50P2",
  "DDX51",
  "DDX52",
  "DDX53",
  "DDX54",
  "DDX55",
  "DDX55P1",
  "DDX56",
  "DDX58",
  "DDX59",
  "DDX60",
  "DDX60L",
  "DEAF1",
  "DEC1",
  "DECR1",
  "DECR2",
  "DEDD",
  "DEDD2",
  "DEF6",
  "DEF8",
  "DEFA1",
  "DEFA1A3",
  "DEFA1B",
  "DEFA3",
  "DEFA4",
  "DEFA5",
  "DEFA6",
  "DEFA7P",
  "DEFA8P",
  "DEFA8",
  "DEFA9P",
  "DEFA10P",
  "DEFA11P",
  "DEFB1",
  "DEFB4A",
  "DEFB4B",
  "DEFB103A",
  "DEFB103B",
  "DEFB104A",
  "DEFB104B",
  "DEFB105A",
  "DEFB105B",
  "DEFB106A",
  "DEFB106B",
  "DEFB107A",
  "DEFB107B",
  "DEFB108B",
  "DEFB108P1",
  "DEFB108P2",
  "DEFB108P3",
  "DEFB108P4",
  "DEFB109P1",
  "DEFB109P1B",
  "DEFB109P2",
  "DEFB109P3",
  "DEFB110",
  "DEFB111",
  "DEFB112",
  "DEFB113",
  "DEFB114",
  "DEFB115",
  "DEFB116",
  "DEFB117",
  "DEFB118",
  "DEFB119",
  "DEFB121",
  "DEFB122",
  "DEFB123",
  "DEFB124",
  "DEFB125",
  "DEFB126",
  "DEFB127",
  "DEFB128",
  "DEFB129",
  "DEFB130",
  "DEFB131",
  "DEFB132",
  "DEFB132P",
  "DEFB133",
  "DEFB134",
  "DEFB135",
  "DEFB136",
  "DEFT1P",
  "DEFT1P2",
  "DEFT2P",
  "DEFT3P",
  "DEFT4P",
  "DEFT5P",
  "DEFT6P",
  "DEGS1",
  "DEGS2",
  "DEK",
  "DENND1A",
  "DENND1B",
  "DENND1C",
  "DENND2A",
  "DENND2C",
  "DENND2D",
  "DENND3",
  "DENND4A",
  "DENND4B",
  "DENND4C",
  "DENND5A",
  "DENND5B",
  "DENND5B-AS1",
  "DENND6A",
  "DENND6A-AS1",
  "DENND6B",
  "DENR",
  "DEPDC1",
  "DEPDC1-AS1",
  "DEPDC1B",
  "DEPDC1P1",
  "DEPDC1P2",
  "DEPDC4",
  "DEPDC5",
  "DEPDC7",
  "DEPTOR",
  "DERA",
  "DERL1",
  "DERL2",
  "DERL3",
  "DES",
  "DESI1",
  "DESI2",
  "DET1",
  "DEUP1",
  "DEXI",
  "DFFA",
  "DFFB",
  "DFFBP1",
  "DFN5",
  "DFN7",
  "DFN8",
  "DFNA5",
  "DFNA7",
  "DFNA16",
  "DFNA18",
  "DFNA19",
  "DFNA21",
  "DFNA24",
  "DFNA27",
  "DFNA29",
  "DFNA30",
  "DFNA31",
  "DFNA32",
  "DFNA33",
  "DFNA34",
  "DFNA35",
  "DFNA37",
  "DFNA40",
  "DFNA42",
  "DFNA43",
  "DFNA45",
  "DFNA46",
  "DFNA47",
  "DFNA48",
  "DFNA49",
  "DFNA53",
  "DFNA54",
  "DFNA55",
  "DFNA57",
  "DFNA58",
  "DFNA59",
  "DFNA60",
  "DFNA61",
  "DFNA62",
  "DFNA63",
  "DFNB5",
  "DFNB13",
  "DFNB14",
  "DFNB17",
  "DFNB19",
  "DFNB20",
  "DFNB26",
  "DFNB27",
  "DFNB32",
  "DFNB33",
  "DFNB34",
  "DFNB38",
  "DFNB40",
  "DFNB43",
  "DFNB45",
  "DFNB46",
  "DFNB47",
  "DFNB50",
  "DFNB51",
  "DFNB54",
  "DFNB55",
  "DFNB56",
  "DFNB58",
  "DFNB59",
  "DFNB62",
  "DFNB65",
  "DFNB69",
  "DFNB71",
  "DFNB75",
  "DFNB78",
  "DFNB80",
  "DFNB81",
  "DFNB83",
  "DFNB85",
  "DFNB87",
  "DFNB90",
  "DFNB92",
  "DFNB93",
  "DFNB96",
  "DFNB100",
  "DFNM1",
  "DFNM2",
  "DFNX3",
  "DFNY1",
  "DGAT1",
  "DGAT2",
  "DGAT2L6",
  "DGAT2L7P",
  "DGCR",
  "DGCR2",
  "DGCR5",
  "DGCR6",
  "DGCR6L",
  "DGCR7",
  "DGCR8",
  "DGCR9",
  "DGCR10",
  "DGCR11",
  "DGCR12",
  "DGCR14",
  "DGKA",
  "DGKB",
  "DGKD",
  "DGKE",
  "DGKG",
  "DGKH",
  "DGKI",
  "DGKK",
  "DGKQ",
  "DGKZ",
  "DGKZP1",
  "DGUOK",
  "DGUOK-AS1",
  "DHCR7",
  "DHCR24",
  "DHDDS",
  "DHDH",
  "DHFR",
  "DHFR2",
  "DHFRP1",
  "DHFRP2",
  "DHFRP3",
  "DHFRP5",
  "DHFRP6",
  "DHH",
  "DHODH",
  "DHPS",
  "DHRS1",
  "DHRS2",
  "DHRS3",
  "DHRS4",
  "DHRS4-AS1",
  "DHRS4L1",
  "DHRS4L2",
  "DHRS7",
  "DHRS7B",
  "DHRS7C",
  "DHRS9",
  "DHRS11",
  "DHRS12",
  "DHRS13",
  "DHRSX",
  "DHRSX-IT1",
  "DHTKD1",
  "DHX8",
  "DHX9",
  "DHX9P1",
  "DHX15",
  "DHX16",
  "DHX29",
  "DHX30",
  "DHX32",
  "DHX33",
  "DHX34",
  "DHX35",
  "DHX36",
  "DHX37",
  "DHX38",
  "DHX40",
  "DHX40P1",
  "DHX57",
  "DHX58",
  "DIABLO",
  "DIANPH",
  "DIAPH1",
  "DIAPH2",
  "DIAPH2-AS1",
  "DIAPH3",
  "DIAPH3-AS1",
  "DIAPH3-AS2",
  "DICER1",
  "DICER1-AS1",
  "DIDO1",
  "DIEXF",
  "DIFF6L",
  "DIH1",
  "DIMT1",
  "DIO1",
  "DIO2",
  "DIO2-AS1",
  "DIO3",
  "DIO3OS",
  "DIP2A",
  "DIP2A-IT1",
  "DIP2B",
  "DIP2C",
  "DIRAS1",
  "DIRAS2",
  "DIRAS3",
  "DIRC1",
  "DIRC2",
  "DIRC3",
  "DIRC3-AS1",
  "DIS3",
  "DIS3L",
  "DIS3L2",
  "DIS3L2P1",
  "DISC1",
  "DISC1-IT1",
  "DISC1FP1",
  "DISC2",
  "DISP1",
  "DISP2",
  "DISP3",
  "DIXDC1",
  "DKC1",
  "DKK1",
  "DKK2",
  "DKK3",
  "DKK4",
  "DKKL1",
  "DKKL1P1",
  "DLAT",
  "DLC1",
  "DLD",
  "DLEC1",
  "DLEC1P1",
  "DLEU1",
  "DLEU1-AS1",
  "DLEU2",
  "DLEU2L",
  "DLEU7",
  "DLEU7-AS1",
  "DLG1",
  "DLG1-AS1",
  "DLG2",
  "DLG2-AS1",
  "DLG3",
  "DLG3-AS1",
  "DLG4",
  "DLG5",
  "DLG5-AS1",
  "DLGAP1",
  "DLGAP1-AS1",
  "DLGAP1-AS2",
  "DLGAP1-AS3",
  "DLGAP1-AS4",
  "DLGAP1-AS5",
  "DLGAP2",
  "DLGAP2-AS1",
  "DLGAP3",
  "DLGAP4",
  "DLGAP4-AS1",
  "DLGAP5",
  "DLGAP5P1",
  "DLK1",
  "DLK2",
  "DLL1",
  "DLL3",
  "DLL4",
  "DLST",
  "DLSTP1",
  "DLX1",
  "DLX2",
  "DLX2-AS1",
  "DLX3",
  "DLX4",
  "DLX5",
  "DLX6",
  "DLX6-AS1",
  "DLX6-AS2",
  "DMAP1",
  "DMBT1",
  "DMBT1P1",
  "DMBX1",
  "DMC1",
  "DMD",
  "DMD-AS1",
  "DMD-AS2",
  "DMD-AS3",
  "DMGDH",
  "DMKN",
  "DMP1",
  "DMPK",
  "DMRT1",
  "DMRT2",
  "DMRT3",
  "DMRTA1",
  "DMRTA2",
  "DMRTB1",
  "DMRTC1",
  "DMRTC1B",
  "DMRTC2",
  "DMTF1",
  "DMTN",
  "DMWD",
  "DMXL1",
  "DMXL2",
  "DNA2",
  "DNAAF1",
  "DNAAF2",
  "DNAAF3",
  "DNAAF5",
  "DNAH1",
  "DNAH2",
  "DNAH3",
  "DNAH5",
  "DNAH6",
  "DNAH7",
  "DNAH8",
  "DNAH9",
  "DNAH10",
  "DNAH10OS",
  "DNAH11",
  "DNAH12",
  "DNAH13",
  "DNAH14",
  "DNAH17",
  "DNAH17-AS1",
  "DNAI1",
  "DNAI2",
  "DNAJA1",
  "DNAJA1P1",
  "DNAJA1P2",
  "DNAJA1P3",
  "DNAJA1P4",
  "DNAJA1P5",
  "DNAJA1P6",
  "DNAJA2",
  "DNAJA3",
  "DNAJA4",
  "DNAJB1",
  "DNAJB1P1",
  "DNAJB2",
  "DNAJB3",
  "DNAJB4",
  "DNAJB5",
  "DNAJB5-AS1",
  "DNAJB5P1",
  "DNAJB6",
  "DNAJB7",
  "DNAJB8",
  "DNAJB8-AS1",
  "DNAJB9",
  "DNAJB11",
  "DNAJB12",
  "DNAJB13",
  "DNAJB14",
  "DNAJC1",
  "DNAJC2",
  "DNAJC3",
  "DNAJC3-AS1",
  "DNAJC4",
  "DNAJC5",
  "DNAJC5B",
  "DNAJC5G",
  "DNAJC6",
  "DNAJC7",
  "DNAJC8",
  "DNAJC8P1",
  "DNAJC9",
  "DNAJC9-AS1",
  "DNAJC10",
  "DNAJC11",
  "DNAJC12",
  "DNAJC13",
  "DNAJC14",
  "DNAJC15",
  "DNAJC16",
  "DNAJC17",
  "DNAJC18",
  "DNAJC19",
  "DNAJC19P1",
  "DNAJC19P2",
  "DNAJC19P3",
  "DNAJC19P4",
  "DNAJC19P5",
  "DNAJC19P6",
  "DNAJC19P7",
  "DNAJC19P8",
  "DNAJC19P9",
  "DNAJC21",
  "DNAJC22",
  "DNAJC24",
  "DNAJC25",
  "DNAJC25-GNG10",
  "DNAJC27",
  "DNAJC27-AS1",
  "DNAJC28",
  "DNAJC30",
  "DNAL1",
  "DNAL4",
  "DNALI1",
  "DNASE1",
  "DNASE1L1",
  "DNASE1L2",
  "DNASE1L3",
  "DNASE2",
  "DNASE2B",
  "DNCM",
  "DND1",
  "DND1P1",
  "DND1P2",
  "DNER",
  "DNHD1",
  "DNLZ",
  "DNM1",
  "DNM1DN1@",
  "DNM1DN2@",
  "DNM1DN6",
  "DNM1DN13",
  "DNM1DN20",
  "DNM1DN21",
  "DNM1DN22",
  "DNM1DN23",
  "DNM1L",
  "DNM1P5",
  "DNM1P9",
  "DNM1P17",
  "DNM1P18",
  "DNM1P19",
  "DNM1P24",
  "DNM1P25",
  "DNM1P26",
  "DNM1P27",
  "DNM1P28",
  "DNM1P29",
  "DNM1P30",
  "DNM1P31",
  "DNM1P32",
  "DNM1P33",
  "DNM1P34",
  "DNM1P35",
  "DNM1P36",
  "DNM1P37",
  "DNM1P38",
  "DNM1P39",
  "DNM1P40",
  "DNM1P41",
  "DNM1P43",
  "DNM1P44",
  "DNM1P45",
  "DNM1P46",
  "DNM1P47",
  "DNM1P48",
  "DNM1P49",
  "DNM1P50",
  "DNM1P51",
  "DNM2",
  "DNM3",
  "DNM3-IT1",
  "DNM3OS",
  "DNMBP",
  "DNMBP-AS1",
  "DNMT1",
  "DNMT3A",
  "DNMT3AP1",
  "DNMT3B",
  "DNMT3L",
  "DNPEP",
  "DNPH1",
  "DNTT",
  "DNTTIP1",
  "DNTTIP2",
  "DOC2A",
  "DOC2B",
  "DOC2GP",
  "DOCK1",
  "DOCK2",
  "DOCK3",
  "DOCK4",
  "DOCK4-AS1",
  "DOCK5",
  "DOCK6",
  "DOCK7",
  "DOCK8",
  "DOCK9",
  "DOCK9-AS1",
  "DOCK9-AS2",
  "DOCK10",
  "DOCK11",
  "DOCK11P1",
  "DOHH",
  "DOK1",
  "DOK2",
  "DOK3",
  "DOK4",
  "DOK5",
  "DOK6",
  "DOK7",
  "DOLK",
  "DOLPP1",
  "DONSON",
  "DOPEY1",
  "DOPEY2",
  "DOT1L",
  "DPAGT1",
  "DPCD",
  "DPCR1",
  "DPEP1",
  "DPEP2",
  "DPEP3",
  "DPF1",
  "DPF2",
  "DPF3",
  "DPH1",
  "DPH2",
  "DPH3",
  "DPH3P1",
  "DPH3P2",
  "DPH5",
  "DPH6",
  "DPH6-AS1",
  "DPH7",
  "DPM1",
  "DPM2",
  "DPM3",
  "DPP3",
  "DPP3P1",
  "DPP3P2",
  "DPP4",
  "DPP6",
  "DPP7",
  "DPP8",
  "DPP9",
  "DPP9-AS1",
  "DPP10",
  "DPP10-AS1",
  "DPP10-AS2",
  "DPP10-AS3",
  "DPPA2",
  "DPPA2P1",
  "DPPA2P2",
  "DPPA2P3",
  "DPPA2P4",
  "DPPA3",
  "DPPA3P1",
  "DPPA3P2",
  "DPPA3P3",
  "DPPA4",
  "DPPA4P1",
  "DPPA5",
  "DPPA5P1",
  "DPPA5P2",
  "DPPA5P3",
  "DPPA5P4",
  "DPRX",
  "DPRXP1",
  "DPRXP2",
  "DPRXP3",
  "DPRXP4",
  "DPRXP5",
  "DPRXP6",
  "DPRXP7",
  "DPT",
  "DPY19L1",
  "DPY19L1P1",
  "DPY19L1P2",
  "DPY19L2",
  "DPY19L2P1",
  "DPY19L2P2",
  "DPY19L2P3",
  "DPY19L2P4",
  "DPY19L2P5",
  "DPY19L3",
  "DPY19L4",
  "DPY30",
  "DPYD",
  "DPYD-AS1",
  "DPYD-AS2",
  "DPYD-IT1",
  "DPYS",
  "DPYSL2",
  "DPYSL3",
  "DPYSL4",
  "DPYSL5",
  "DQX1",
  "DR1",
  "DRAIC",
  "DRAM1",
  "DRAM2",
  "DRAP1",
  "DRAXIN",
  "DRAXINP1",
  "DRC1",
  "DRC3",
  "DRC7",
  "DRD1",
  "DRD1L1",
  "DRD2",
  "DRD3",
  "DRD4",
  "DRD5",
  "DRD5P1",
  "DRD5P2",
  "DRG1",
  "DRG2",
  "DRGX",
  "DRICH1",
  "DROSHA",
  "DRP2",
  "DSC1",
  "DSC2",
  "DSC3",
  "DSCAM",
  "DSCAM-AS1",
  "DSCAM-IT1",
  "DSCAML1",
  "DSCAS",
  "DSCC1",
  "DSCR3",
  "DSCR4",
  "DSCR4-IT1",
  "DSCR8",
  "DSCR9",
  "DSCR10",
  "DSE",
  "DSEL",
  "DSG1",
  "DSG1-AS1",
  "DSG2",
  "DSG2-AS1",
  "DSG3",
  "DSG4",
  "DSN1",
  "DSP",
  "DSPP",
  "DST",
  "DSTN",
  "DSTNP1",
  "DSTNP2",
  "DSTNP3",
  "DSTNP4",
  "DSTNP5",
  "DSTYK",
  "DTD1",
  "DTD2",
  "DTHD1",
  "DTL",
  "DTNA",
  "DTNB",
  "DTNBP1",
  "DTWD1",
  "DTWD2",
  "DTX1",
  "DTX2",
  "DTX2P1",
  "DTX2P1-UPK3BP1-PMS2P11",
  "DTX3",
  "DTX3L",
  "DTX4",
  "DTYMK",
  "DUBR",
  "DUOX1",
  "DUOX2",
  "DUOXA1",
  "DUOXA2",
  "DUPD1",
  "DURS1",
  "DUS1L",
  "DUS2",
  "DUS3L",
  "DUS4L",
  "DUSP1",
  "DUSP2",
  "DUSP3",
  "DUSP4",
  "DUSP5",
  "DUSP5P1",
  "DUSP5P2",
  "DUSP6",
  "DUSP7",
  "DUSP8",
  "DUSP8P1",
  "DUSP8P2",
  "DUSP8P3",
  "DUSP8P4",
  "DUSP8P5",
  "DUSP9",
  "DUSP10",
  "DUSP11",
  "DUSP12",
  "DUSP12P1",
  "DUSP13",
  "DUSP14",
  "DUSP15",
  "DUSP16",
  "DUSP18",
  "DUSP19",
  "DUSP21",
  "DUSP22",
  "DUSP23",
  "DUSP26",
  "DUSP27",
  "DUSP28",
  "DUT",
  "DUTP1",
  "DUTP2",
  "DUTP3",
  "DUTP4",
  "DUTP5",
  "DUTP6",
  "DUTP7",
  "DUTP8",
  "DUX1",
  "DUX3",
  "DUX4",
  "DUX4L1",
  "DUX4L2",
  "DUX4L3",
  "DUX4L4",
  "DUX4L5",
  "DUX4L6",
  "DUX4L7",
  "DUX4L8",
  "DUX4L9",
  "DUX4L10",
  "DUX4L11",
  "DUX4L12",
  "DUX4L13",
  "DUX4L14",
  "DUX4L15",
  "DUX4L16",
  "DUX4L17",
  "DUX4L18",
  "DUX4L19",
  "DUX4L20",
  "DUX4L21",
  "DUX4L22",
  "DUX4L23",
  "DUX4L24",
  "DUX4L25",
  "DUX4L26",
  "DUX4L27",
  "DUX4L28",
  "DUX4L29",
  "DUX4L31",
  "DUX4L32",
  "DUX4L33",
  "DUX4L34",
  "DUX4L35",
  "DUX4L36",
  "DUX4L37",
  "DUX4L38",
  "DUX4L39",
  "DUX4L40",
  "DUX4L41",
  "DUX4L42",
  "DUX4L43",
  "DUX4L44",
  "DUX4L45",
  "DUX4L46",
  "DUX4L47",
  "DUX4L48",
  "DUX4L49",
  "DUX4L50",
  "DUX4L51",
  "DUX4L52",
  "DUX5",
  "DUXA",
  "DUXAP1",
  "DUXAP2",
  "DUXAP3",
  "DUXAP4",
  "DUXAP5",
  "DUXAP6",
  "DUXAP7",
  "DUXAP8",
  "DUXAP9",
  "DUXAP10",
  "DUXAP11",
  "DUXAP12",
  "DUXB",
  "DVL1",
  "DVL1P1",
  "DVL2",
  "DVL3",
  "DWS",
  "DXO",
  "DYDC1",
  "DYDC2",
  "DYM",
  "DYNAP",
  "DYNC1H1",
  "DYNC1I1",
  "DYNC1I2",
  "DYNC1I2P1",
  "DYNC1LI1",
  "DYNC1LI2",
  "DYNC2H1",
  "DYNC2LI1",
  "DYNLL1",
  "DYNLL1P1",
  "DYNLL1P2",
  "DYNLL1P3",
  "DYNLL1P4",
  "DYNLL1P5",
  "DYNLL1P6",
  "DYNLL1P7",
  "DYNLL2",
  "DYNLRB1",
  "DYNLRB2",
  "DYNLT1",
  "DYNLT3",
  "DYNLT3P1",
  "DYNLT3P2",
  "DYRK1A",
  "DYRK1AIP1",
  "DYRK1AIP2",
  "DYRK1B",
  "DYRK2",
  "DYRK3",
  "DYRK4",
  "DYSF",
  "DYT2",
  "DYT7",
  "DYT13",
  "DYT15",
  "DYT17",
  "DYT21",
  "DYT22",
  "DYTN",
  "DYX1",
  "DYX1C1",
  "DYX1C1-CCPG1",
  "DYX2",
  "DYX3",
  "DYX4",
  "DYX5",
  "DYX6",
  "DYX7",
  "DYX8",
  "DYX9",
  "DZANK1",
  "DZIP1",
  "DZIP1L",
  "DZIP3",
  "E2F1",
  "E2F2",
  "E2F3",
  "E2F3-IT1",
  "E2F3P1",
  "E2F3P2",
  "E2F4",
  "E2F4P1",
  "E2F5",
  "E2F6",
  "E2F6P1",
  "E2F6P2",
  "E2F6P3",
  "E2F6P4",
  "E2F7",
  "E2F8",
  "E4F1",
  "E11S",
  "EAF1",
  "EAF1-AS1",
  "EAF2",
  "EAPP",
  "EARS2",
  "EBAG9",
  "EBAG9P1",
  "EBF1",
  "EBF2",
  "EBF3",
  "EBF4",
  "EBI3",
  "EBLN1",
  "EBLN2",
  "EBLN3P",
  "EBM",
  "EBNA1BP2",
  "EBP",
  "EBPL",
  "EBR3",
  "EBR4",
  "EBVM1",
  "EBVS1",
  "ECA1",
  "ECD",
  "ECE1",
  "ECE2",
  "ECEL1",
  "ECEL1P1",
  "ECEL1P2",
  "ECEL1P3",
  "ECH1",
  "ECHDC1",
  "ECHDC2",
  "ECHDC3",
  "ECHS1",
  "ECI1",
  "ECI2",
  "ECM1",
  "ECM1P1",
  "ECM1P2",
  "ECM2",
  "ECSCR",
  "ECSIT",
  "ECT2",
  "ECT2L",
  "ED#",
  "EDA",
  "EDA2R",
  "EDAR",
  "EDARADD",
  "EDC3",
  "EDC4",
  "EDDM3A",
  "EDDM3B",
  "EDDM3CP",
  "EDDM3DP",
  "EDEM1",
  "EDEM2",
  "EDEM3",
  "EDF1",
  "EDIL3",
  "EDN1",
  "EDN2",
  "EDN3",
  "EDNRA",
  "EDNRB",
  "EDNRB-AS1",
  "EDRF1",
  "EDRF1-AS1",
  "EEA1",
  "EEC1",
  "EEC2",
  "EED",
  "EEF1A1",
  "EEF1A1L14",
  "EEF1A1P1",
  "EEF1A1P2",
  "EEF1A1P3",
  "EEF1A1P4",
  "EEF1A1P5",
  "EEF1A1P6",
  "EEF1A1P7",
  "EEF1A1P8",
  "EEF1A1P9",
  "EEF1A1P10",
  "EEF1A1P11",
  "EEF1A1P12",
  "EEF1A1P13",
  "EEF1A1P14",
  "EEF1A1P15",
  "EEF1A1P16",
  "EEF1A1P17",
  "EEF1A1P18",
  "EEF1A1P19",
  "EEF1A1P20",
  "EEF1A1P21",
  "EEF1A1P22",
  "EEF1A1P23",
  "EEF1A1P24",
  "EEF1A1P25",
  "EEF1A1P26",
  "EEF1A1P27",
  "EEF1A1P28",
  "EEF1A1P29",
  "EEF1A1P30",
  "EEF1A1P31",
  "EEF1A1P32",
  "EEF1A1P33",
  "EEF1A1P34",
  "EEF1A1P35",
  "EEF1A1P36",
  "EEF1A1P37",
  "EEF1A1P38",
  "EEF1A1P39",
  "EEF1A1P40",
  "EEF1A1P41",
  "EEF1A1P42",
  "EEF1A1P43",
  "EEF1A2",
  "EEF1AKMT1",
  "EEF1B2",
  "EEF1B2P1",
  "EEF1B2P2",
  "EEF1B2P3",
  "EEF1B2P4",
  "EEF1B2P5",
  "EEF1B2P6",
  "EEF1B2P7",
  "EEF1B2P8",
  "EEF1D",
  "EEF1DP1",
  "EEF1DP2",
  "EEF1DP3",
  "EEF1DP4",
  "EEF1DP5",
  "EEF1DP6",
  "EEF1DP7",
  "EEF1DP8",
  "EEF1E1",
  "EEF1E1-BLOC1S5",
  "EEF1E1P1",
  "EEF1G",
  "EEF1GP1",
  "EEF1GP2",
  "EEF1GP3",
  "EEF1GP4",
  "EEF1GP5",
  "EEF1GP6",
  "EEF1GP7",
  "EEF1GP8",
  "EEF2",
  "EEF2K",
  "EEF2KMT",
  "EEFSEC",
  "EEGV1",
  "EEPD1",
  "EFCAB1",
  "EFCAB2",
  "EFCAB3",
  "EFCAB5",
  "EFCAB6",
  "EFCAB6-AS1",
  "EFCAB7",
  "EFCAB8",
  "EFCAB9",
  "EFCAB10",
  "EFCAB11",
  "EFCAB12",
  "EFCAB13",
  "EFCAB14",
  "EFCAB14-AS1",
  "EFCAB14P1",
  "EFCC1",
  "EFEMP1",
  "EFEMP2",
  "EFHB",
  "EFHC1",
  "EFHC2",
  "EFHD1",
  "EFHD2",
  "EFL1",
  "EFNA1",
  "EFNA2",
  "EFNA3",
  "EFNA4",
  "EFNA5",
  "EFNB1",
  "EFNB2",
  "EFNB3",
  "EFR3A",
  "EFR3B",
  "EFS",
  "EFTUD1P1",
  "EFTUD1P2",
  "EFTUD2",
  "EGF",
  "EGFEM1P",
  "EGFL6",
  "EGFL7",
  "EGFL8",
  "EGFLAM",
  "EGFLAM-AS1",
  "EGFLAM-AS2",
  "EGFLAM-AS3",
  "EGFLAM-AS4",
  "EGFR",
  "EGFR-AS1",
  "EGI",
  "EGLN1",
  "EGLN1P1",
  "EGLN2",
  "EGLN3",
  "EGLN3-AS1",
  "EGLN3P1",
  "EGOT",
  "EGR1",
  "EGR2",
  "EGR3",
  "EGR4",
  "EHBP1",
  "EHBP1L1",
  "EHD1",
  "EHD2",
  "EHD3",
  "EHD4",
  "EHD4-AS1",
  "EHF",
  "EHHADH",
  "EHHADH-AS1",
  "EHMT1",
  "EHMT1-IT1",
  "EHMT2",
  "EHMT2-AS1",
  "EI24",
  "EI24P1",
  "EI24P2",
  "EI24P3",
  "EI24P4",
  "EI24P5",
  "EID1",
  "EID2",
  "EID2B",
  "EID3",
  "EIF1",
  "EIF1AD",
  "EIF1AX",
  "EIF1AX-AS1",
  "EIF1AXP1",
  "EIF1AXP2",
  "EIF1AY",
  "EIF1B",
  "EIF1B-AS1",
  "EIF1P1",
  "EIF1P2",
  "EIF1P3",
  "EIF1P4",
  "EIF1P5",
  "EIF1P6",
  "EIF1P7",
  "EIF2A",
  "EIF2AK1",
  "EIF2AK2",
  "EIF2AK3",
  "EIF2AK4",
  "EIF2AP1",
  "EIF2AP2",
  "EIF2AP3",
  "EIF2AP4",
  "EIF2B1",
  "EIF2B2",
  "EIF2B3",
  "EIF2B4",
  "EIF2B5",
  "EIF2B5-AS1",
  "EIF2B5-IT1",
  "EIF2D",
  "EIF2S1",
  "EIF2S2",
  "EIF2S2P1",
  "EIF2S2P2",
  "EIF2S2P3",
  "EIF2S2P4",
  "EIF2S2P5",
  "EIF2S2P6",
  "EIF2S2P7",
  "EIF2S3",
  "EIF3A",
  "EIF3B",
  "EIF3C",
  "EIF3CL",
  "EIF3D",
  "EIF3E",
  "EIF3EP1",
  "EIF3EP2",
  "EIF3EP3",
  "EIF3EP4",
  "EIF3F",
  "EIF3FP1",
  "EIF3FP2",
  "EIF3FP3",
  "EIF3G",
  "EIF3H",
  "EIF3I",
  "EIF3IP1",
  "EIF3J",
  "EIF3J-AS1",
  "EIF3K",
  "EIF3KP1",
  "EIF3KP2",
  "EIF3KP3",
  "EIF3L",
  "EIF3LP1",
  "EIF3LP2",
  "EIF3LP3",
  "EIF3M",
  "EIF4A1",
  "EIF4A1P1",
  "EIF4A1P2",
  "EIF4A1P3",
  "EIF4A1P4",
  "EIF4A1P5",
  "EIF4A1P6",
  "EIF4A1P7",
  "EIF4A1P8",
  "EIF4A1P9",
  "EIF4A1P10",
  "EIF4A1P11",
  "EIF4A1P12",
  "EIF4A1P13",
  "EIF4A2",
  "EIF4A2P1",
  "EIF4A2P2",
  "EIF4A2P3",
  "EIF4A2P4",
  "EIF4A2P5",
  "EIF4A3",
  "EIF4A3P1",
  "EIF4B",
  "EIF4BP1",
  "EIF4BP2",
  "EIF4BP3",
  "EIF4BP4",
  "EIF4BP5",
  "EIF4BP6",
  "EIF4BP7",
  "EIF4BP8",
  "EIF4BP9",
  "EIF4E",
  "EIF4E1B",
  "EIF4E2",
  "EIF4E2P1",
  "EIF4E2P2",
  "EIF4E3",
  "EIF4EBP1",
  "EIF4EBP1P1",
  "EIF4EBP1P2",
  "EIF4EBP2",
  "EIF4EBP2P1",
  "EIF4EBP2P2",
  "EIF4EBP2P3",
  "EIF4EBP3",
  "EIF4ENIF1",
  "EIF4EP1",
  "EIF4EP2",
  "EIF4EP3",
  "EIF4EP4",
  "EIF4EP5",
  "EIF4G1",
  "EIF4G2",
  "EIF4G3",
  "EIF4H",
  "EIF4HP1",
  "EIF4HP2",
  "EIF4",
  "EIF5",
  "EIF5A",
  "EIF5A2",
  "EIF5A2P1",
  "EIF5AL1",
  "EIF5AP2",
  "EIF5AP3",
  "EIF5AP4",
  "EIF5B",
  "EIF5P1",
  "EIF5P2",
  "EIF6",
  "EJM2",
  "ELAC1",
  "ELAC2",
  "ELANE",
  "ELAVL1",
  "ELAVL2",
  "ELAVL3",
  "ELAVL4",
  "ELDR",
  "ELF1",
  "ELF2",
  "ELF2P1",
  "ELF2P2",
  "ELF2P3",
  "ELF2P4",
  "ELF3",
  "ELF4",
  "ELF5",
  "ELFN1",
  "ELFN1-AS1",
  "ELFN2",
  "ELK1",
  "ELK1P1",
  "ELK2AP",
  "ELK2BP",
  "ELK3",
  "ELK4",
  "ELL",
  "ELL2",
  "ELL2P1",
  "ELL2P2",
  "ELL2P3",
  "ELL2P4",
  "ELL3",
  "ELMO1",
  "ELMO1-AS1",
  "ELMO2",
  "ELMO2P1",
  "ELMO3",
  "ELMOD1",
  "ELMOD2",
  "ELMOD3",
  "ELMSAN1",
  "ELN",
  "ELNL1",
  "ELOA",
  "ELOA-AS1",
  "ELOA2",
  "ELOA3",
  "ELOA3L1",
  "ELOA3L2",
  "ELOB",
  "ELOBP1",
  "ELOBP2",
  "ELOBP3",
  "ELOBP4",
  "ELOC",
  "ELOCP2",
  "ELOCP3",
  "ELOCP4",
  "ELOCP5",
  "ELOCP6",
  "ELOCP7",
  "ELOCP8",
  "ELOCP9",
  "ELOCP10",
  "ELOCP11",
  "ELOCP12",
  "ELOCP13",
  "ELOCP14",
  "ELOCP15",
  "ELOCP16",
  "ELOCP17",
  "ELOCP18",
  "ELOCP19",
  "ELOCP20",
  "ELOCP21",
  "ELOCP22",
  "ELOCP23",
  "ELOCP24",
  "ELOCP26",
  "ELOCP27",
  "ELOCP28",
  "ELOCP29",
  "ELOCP30",
  "ELOCP31",
  "ELOCP32",
  "ELOCP33",
  "ELOCP34",
  "ELOCP35",
  "ELOF1",
  "ELOVL1",
  "ELOVL2",
  "ELOVL2-AS1",
  "ELOVL3",
  "ELOVL4",
  "ELOVL5",
  "ELOVL6",
  "ELOVL7",
  "ELP2",
  "ELP3",
  "ELP4",
  "ELP5",
  "ELP6",
  "ELSPBP1",
  "EMB",
  "EMBP1",
  "EMC1",
  "EMC2",
  "EMC3",
  "EMC3-AS1",
  "EMC4",
  "EMC6",
  "EMC7",
  "EMC8",
  "EMC9",
  "EMC10",
  "EMCN",
  "EMD",
  "EME1",
  "EME2",
  "EMG1",
  "EMID1",
  "EMILIN1",
  "EMILIN2",
  "EMILIN3",
  "EML1",
  "EML2",
  "EML2-AS1",
  "EML3",
  "EML4",
  "EML5",
  "EML6",
  "EMP1",
  "EMP2",
  "EMP3",
  "EMSY",
  "EMWX",
  "EMX1",
  "EMX2",
  "EMX2OS",
  "EN1",
  "EN2",
  "ENAH",
  "ENAM",
  "ENC1",
  "ENDOD1",
  "ENDOG",
  "ENDOU",
  "ENDOV",
  "ENG",
  "ENGASE",
  "ENHO",
  "ENKD1",
  "ENKUR",
  "ENO1",
  "ENO1-AS1",
  "ENO1-IT1",
  "ENO1P1",
  "ENO1P2",
  "ENO1P3",
  "ENO1P4",
  "ENO2",
  "ENO3",
  "ENO4",
  "ENOPH1",
  "ENOSF1",
  "ENOX1",
  "ENOX1-AS1",
  "ENOX1-AS2",
  "ENOX2",
  "ENPEP",
  "ENPP1",
  "ENPP2",
  "ENPP3",
  "ENPP4",
  "ENPP5",
  "ENPP6",
  "ENPP7",
  "ENPP7P1",
  "ENPP7P2",
  "ENPP7P3",
  "ENPP7P4",
  "ENPP7P5",
  "ENPP7P6",
  "ENPP7P7",
  "ENPP7P8",
  "ENPP7P9",
  "ENPP7P10",
  "ENPP7P11",
  "ENPP7P12",
  "ENPP7P13",
  "ENPP7P14",
  "ENSA",
  "ENSAP1",
  "ENSAP2",
  "ENSAP3",
  "ENTHD1",
  "ENTPD1",
  "ENTPD1-AS1",
  "ENTPD2",
  "ENTPD3",
  "ENTPD3-AS1",
  "ENTPD4",
  "ENTPD5",
  "ENTPD6",
  "ENTPD7",
  "ENTPD8",
  "ENUR1",
  "ENUR2",
  "ENY2",
  "EOGT",
  "EOMES",
  "EP300",
  "EP300-AS1",
  "EP400",
  "EP400NL",
  "EPAS1",
  "EPB41",
  "EPB41L1",
  "EPB41L2",
  "EPB41L3",
  "EPB41L4A",
  "EPB41L4A-AS1",
  "EPB41L4A-AS2",
  "EPB41L4B",
  "EPB41L5",
  "EPB42",
  "EPC1",
  "EPC2",
  "EPCAM",
  "EPDR1",
  "EPG5",
  "EPGN",
  "EPHA1",
  "EPHA1-AS1",
  "EPHA2",
  "EPHA3",
  "EPHA4",
  "EPHA5",
  "EPHA5-AS1",
  "EPHA6",
  "EPHA7",
  "EPHA8",
  "EPHA10",
  "EPHB1",
  "EPHB2",
  "EPHB3",
  "EPHB4",
  "EPHB6",
  "EPHTLG",
  "EPHX1",
  "EPHX2",
  "EPHX3",
  "EPHX4",
  "EPM2A",
  "EPM2AIP1",
  "EPN1",
  "EPN2",
  "EPN2-AS1",
  "EPN2-IT1",
  "EPN3",
  "EPO",
  "EPOP",
  "EPOR",
  "EPPIN",
  "EPPIN-WFDC6",
  "EPPK1",
  "EPR1",
  "EPRS",
  "EPS8",
  "EPS8L1",
  "EPS8L2",
  "EPS8L3",
  "EPS15",
  "EPS15L1",
  "EPS15P1",
  "EPSTI1",
  "EPX",
  "EPYC",
  "EQTN",
  "ERAL1",
  "ERAP1",
  "ERAP2",
  "ERAS",
  "ERBB2",
  "ERBB3",
  "ERBB4",
  "ERBIN",
  "ERC1",
  "ERC2",
  "ERC2-IT1",
  "ERCC1",
  "ERCC2",
  "ERCC3",
  "ERCC4",
  "ERCC5",
  "ERCC6",
  "ERCC6-PGBD3",
  "ERCC6L",
  "ERCC6L2",
  "ERCC8",
  "ERCM1",
  "ERDA1",
  "EREG",
  "ERF",
  "ERFE",
  "ERG",
  "ERGIC1",
  "ERGIC2",
  "ERGIC3",
  "ERH",
  "ERHP1",
  "ERHP2",
  "ERI1",
  "ERI2",
  "ERI3",
  "ERI3-IT1",
  "ERICD",
  "ERICH1",
  "ERICH1-AS1",
  "ERICH2",
  "ERICH3",
  "ERICH3-AS1",
  "ERICH4",
  "ERICH5",
  "ERICH6",
  "ERICH6-AS1",
  "ERICH6B",
  "ERLEC1",
  "ERLEC1P1",
  "ERLIN1",
  "ERLIN2",
  "ERMAP",
  "ERMARD",
  "ERMN",
  "ERMP1",
  "ERN1",
  "ERN2",
  "ERO1A",
  "ERO1B",
  "ERP27",
  "ERP29",
  "ERP29P1",
  "ERP44",
  "ERPL1",
  "ERPL2",
  "ERRFI1",
  "ERRFI1-IT1",
  "ERV1",
  "ERV3-1",
  "ERV3-2",
  "ERV9-1",
  "ERV18-1",
  "ERVE-1",
  "ERVE-2",
  "ERVE-3",
  "ERVE-4",
  "ERVFC1-1",
  "ERVFC1",
  "ERVFH21-1",
  "ERVFRD-1",
  "ERVFRD-2",
  "ERVFRD-3",
  "ERVH-1",
  "ERVH-2",
  "ERVH-3",
  "ERVH-4",
  "ERVH-5",
  "ERVH-6",
  "ERVH-7",
  "ERVH48-1",
  "ERVI-1",
  "ERVK-1",
  "ERVK-2",
  "ERVK-3",
  "ERVK-4",
  "ERVK-5",
  "ERVK-6",
  "ERVK-7",
  "ERVK-8",
  "ERVK-9",
  "ERVK-10",
  "ERVK-11",
  "ERVK-12",
  "ERVK-13",
  "ERVK-14",
  "ERVK-15",
  "ERVK-16",
  "ERVK-17",
  "ERVK-18",
  "ERVK-19",
  "ERVK-20",
  "ERVK-21",
  "ERVK-22",
  "ERVK-23",
  "ERVK-24",
  "ERVK-25",
  "ERVK-26",
  "ERVK-27",
  "ERVK-28",
  "ERVK-29",
  "ERVK-30",
  "ERVK-31",
  "ERVK2",
  "ERVK3-1",
  "ERVK3-2",
  "ERVK3-3",
  "ERVK3-4",
  "ERVK3-5",
  "ERVK3-6",
  "ERVK3-7",
  "ERVK3-8",
  "ERVK3",
  "ERVK11-1",
  "ERVK13-1",
  "ERVMER34-1",
  "ERVMER61-1",
  "ERVPABLB-1",
  "ERVS71-1",
  "ERVS71-2",
  "ERVT1",
  "ERVT2",
  "ERVT3",
  "ERVT4",
  "ERVT5",
  "ERVV-1",
  "ERVV-2",
  "ERVW-1",
  "ERVW-2",
  "ERVW-3",
  "ERVW-4",
  "ERVW-5",
  "ERVW-6",
  "ERVW-7",
  "ERVW-8",
  "ERVW-9",
  "ERVW-10",
  "ERVW-11",
  "ERVW-12",
  "ERVW-13",
  "ERVW-14",
  "ERVW-15",
  "ERVW-16",
  "ERVW-17",
  "ERVW-18",
  "ERVW-19",
  "ERVW-20",
  "ERVW-21",
  "ERVW-22",
  "ERVW-23",
  "ERVW-24",
  "ERVW-25",
  "ERVW-26",
  "ERVW-27",
  "ERVW-28",
  "ERVW-29",
  "ESA4",
  "ESAM",
  "ESAT",
  "ESB3",
  "ESCO1",
  "ESCO2",
  "ESD",
  "ESF1",
  "ESM1",
  "ESPL1",
  "ESPN",
  "ESPNL",
  "ESPNP",
  "ESR1",
  "ESR2",
  "ESRG",
  "ESRP1",
  "ESRP2",
  "ESRRA",
  "ESRRAP1",
  "ESRRAP2",
  "ESRRB",
  "ESRRG",
  "ESX1",
  "ESYT1",
  "ESYT2",
  "ESYT3",
  "ETAA1",
  "ETF1",
  "ETF1P1",
  "ETF1P2",
  "ETF1P3",
  "ETFA",
  "ETFB",
  "ETFBKMT",
  "ETFDH",
  "ETFRF1",
  "ETHE1",
  "ETM1",
  "ETM2",
  "ETNK1",
  "ETNK2",
  "ETNPPL",
  "ETS1",
  "ETS2",
  "ETV1",
  "ETV2",
  "ETV3",
  "ETV3L",
  "ETV4",
  "ETV5",
  "ETV5-AS1",
  "ETV6",
  "ETV7",
  "EVA1A",
  "EVA1B",
  "EVA1C",
  "EVC",
  "EVC2",
  "EVI2A",
  "EVI2B",
  "EVI5",
  "EVI5L",
  "EVL",
  "EVPL",
  "EVPLL",
  "EVR3",
  "EVX1",
  "EVX1-AS",
  "EVX2",
  "EWSAT1",
  "EWSR1",
  "EXD1",
  "EXD2",
  "EXD3",
  "EXO1",
  "EXO5",
  "EXOC1",
  "EXOC2",
  "EXOC3",
  "EXOC3-AS1",
  "EXOC3L1",
  "EXOC3L2",
  "EXOC3L4",
  "EXOC4",
  "EXOC5",
  "EXOC5P1",
  "EXOC6",
  "EXOC6B",
  "EXOC7",
  "EXOC7P1",
  "EXOC8",
  "EXOG",
  "EXOGP1",
  "EXOSC1",
  "EXOSC2",
  "EXOSC3",
  "EXOSC3P1",
  "EXOSC3P2",
  "EXOSC4",
  "EXOSC5",
  "EXOSC6",
  "EXOSC7",
  "EXOSC8",
  "EXOSC9",
  "EXOSC10",
  "EXPH5",
  "EXT1",
  "EXT2",
  "EXT3",
  "EXTL1",
  "EXTL2",
  "EXTL2P1",
  "EXTL3",
  "EXTL3-AS1",
  "EYA1",
  "EYA2",
  "EYA3",
  "EYA3-IT1",
  "EYA4",
  "EYCL1",
  "EYS",
  "EZH1",
  "EZH2",
  "EZH2P1",
  "EZR",
  "EZR-AS1",
  "F2",
  "F2L",
  "F2R",
  "F2RL1",
  "F2RL2",
  "F2RL3",
  "F3",
  "F5",
  "F7",
  "F7R",
  "F8",
  "F8A1",
  "F8A2",
  "F8A3",
  "F9",
  "F10",
  "F10-AS1",
  "F11",
  "F11-AS1",
  "F11R",
  "F12",
  "F13A1",
  "F13A2",
  "F13A3",
  "F13B",
  "FA1",
  "FA2H",
  "FAAH",
  "FAAH2",
  "FAAHP1",
  "FAAP20",
  "FAAP24",
  "FAAP100",
  "FABP1",
  "FABP2",
  "FABP3",
  "FABP3P2",
  "FABP4",
  "FABP5",
  "FABP5P1",
  "FABP5P2",
  "FABP5P3",
  "FABP5P4",
  "FABP5P5",
  "FABP5P6",
  "FABP5P7",
  "FABP5P8",
  "FABP5P9",
  "FABP5P10",
  "FABP5P11",
  "FABP5P12",
  "FABP5P13",
  "FABP5P14",
  "FABP5P15",
  "FABP6",
  "FABP7",
  "FABP7P1",
  "FABP7P2",
  "FABP9",
  "FABP12",
  "FABP12P1",
  "FACL1",
  "FADD",
  "FADS1",
  "FADS2",
  "FADS2P1",
  "FADS3",
  "FADS6",
  "FAF1",
  "FAF2",
  "FAF2P1",
  "FAH",
  "FAHD1",
  "FAHD2A",
  "FAHD2B",
  "FAHD2CP",
  "FAHD2P1",
  "FAIM",
  "FAIM2",
  "FALEC",
  "FAM3A",
  "FAM3B",
  "FAM3C",
  "FAM3C2",
  "FAM3D",
  "FAM3D-AS1",
  "FAM7A4",
  "FAM7A5",
  "FAM8A1",
  "FAM8A2P",
  "FAM8A3P",
  "FAM8A4P",
  "FAM8A5P",
  "FAM8A6P",
  "FAM8A7P",
  "FAM8A9P",
  "FAM8A10P",
  "FAM9A",
  "FAM9B",
  "FAM9C",
  "FAM13A",
  "FAM13A-AS1",
  "FAM13B",
  "FAM13C",
  "FAM19A1",
  "FAM19A2",
  "FAM19A3",
  "FAM19A4",
  "FAM19A5",
  "FAM20A",
  "FAM20B",
  "FAM20C",
  "FAM21D",
  "FAM21EP",
  "FAM21FP",
  "FAM22C",
  "FAM24A",
  "FAM24B",
  "FAM25A",
  "FAM25BP",
  "FAM25C",
  "FAM25D",
  "FAM25E",
  "FAM25G",
  "FAM25HP",
  "FAM26D",
  "FAM26E",
  "FAM26F",
  "FAM27AP1",
  "FAM27B",
  "FAM27C",
  "FAM27D1",
  "FAM27E2",
  "FAM27E3",
  "FAM27E4",
  "FAM27E5",
  "FAM30A",
  "FAM30B",
  "FAM30C",
  "FAM32A",
  "FAM32BP",
  "FAM32CP",
  "FAM32DP",
  "FAM32EP",
  "FAM35A",
  "FAM35BP",
  "FAM35CP",
  "FAM35DP",
  "FAM41AY1",
  "FAM41AY2",
  "FAM41BY",
  "FAM41C",
  "FAM43A",
  "FAM43B",
  "FAM45A",
  "FAM45BP",
  "FAM46A",
  "FAM46B",
  "FAM46C",
  "FAM46D",
  "FAM47A",
  "FAM47B",
  "FAM47C",
  "FAM47DP",
  "FAM47E",
  "FAM47E-STBD1",
  "FAM49A",
  "FAM49B",
  "FAM50A",
  "FAM50B",
  "FAM53A",
  "FAM53B",
  "FAM53B-AS1",
  "FAM53C",
  "FAM57A",
  "FAM57B",
  "FAM58A",
  "FAM58BP",
  "FAM58CP",
  "FAM58DP",
  "FAM60A",
  "FAM60BP",
  "FAM60CP",
  "FAM60DP",
  "FAM63A",
  "FAM63B",
  "FAM64A",
  "FAM65A",
  "FAM65B",
  "FAM65C",
  "FAM66A",
  "FAM66B",
  "FAM66C",
  "FAM66D",
  "FAM66E",
  "FAM67A",
  "FAM67B",
  "FAM69A",
  "FAM69B",
  "FAM69C",
  "FAM71A",
  "FAM71B",
  "FAM71BP1",
  "FAM71C",
  "FAM71D",
  "FAM71E1",
  "FAM71E2",
  "FAM71F1",
  "FAM71F2",
  "FAM72A",
  "FAM72B",
  "FAM72C",
  "FAM72D",
  "FAM74A1",
  "FAM74A2",
  "FAM74A3",
  "FAM74A4",
  "FAM74A6",
  "FAM74A7",
  "FAM76A",
  "FAM76B",
  "FAM78A",
  "FAM78B",
  "FAM81A",
  "FAM81B",
  "FAM83A",
  "FAM83A-AS1",
  "FAM83B",
  "FAM83C",
  "FAM83C-AS1",
  "FAM83D",
  "FAM83E",
  "FAM83F",
  "FAM83G",
  "FAM83H",
  "FAM83H-AS1",
  "FAM84A",
  "FAM84B",
  "FAM85A",
  "FAM85B",
  "FAM86B1",
  "FAM86B2",
  "FAM86B3P",
  "FAM86C1",
  "FAM86C2P",
  "FAM86DP",
  "FAM86EP",
  "FAM86FP",
  "FAM86GP",
  "FAM86HP",
  "FAM86JP",
  "FAM86KP",
  "FAM86LP",
  "FAM86MP",
  "FAM87A",
  "FAM87B",
  "FAM89A",
  "FAM89B",
  "FAM90A1",
  "FAM90A2P",
  "FAM90A3P",
  "FAM90A4P",
  "FAM90A5P",
  "FAM90A6P",
  "FAM90A7P",
  "FAM90A8P",
  "FAM90A9P",
  "FAM90A10P",
  "FAM90A11P",
  "FAM90A12P",
  "FAM90A13P",
  "FAM90A14P",
  "FAM90A15P",
  "FAM90A16P",
  "FAM90A17P",
  "FAM90A18P",
  "FAM90A19P",
  "FAM90A20P",
  "FAM90A21P",
  "FAM90A22P",
  "FAM90A23P",
  "FAM90A24P",
  "FAM90A25P",
  "FAM90A26",
  "FAM90A27P",
  "FAM90A28P",
  "FAM91A1",
  "FAM91A2P",
  "FAM91A3P",
  "FAM91A4P",
  "FAM92A",
  "FAM92A1P1",
  "FAM92A1P2",
  "FAM92B",
  "FAM93A",
  "FAM93B",
  "FAM95A",
  "FAM95B1",
  "FAM95C",
  "FAM96A",
  "FAM96AP1",
  "FAM96AP2",
  "FAM96B",
  "FAM98A",
  "FAM98B",
  "FAM98C",
  "FAM99A",
  "FAM99B",
  "FAM102A",
  "FAM102B",
  "FAM103A1",
  "FAM103A2P",
  "FAM104A",
  "FAM104B",
  "FAM105A",
  "FAM106A",
  "FAM106B",
  "FAM106CP",
  "FAM106DP",
  "FAM107A",
  "FAM107B",
  "FAM109A",
  "FAM109B",
  "FAM110A",
  "FAM110B",
  "FAM110C",
  "FAM110D",
  "FAM111A",
  "FAM111B",
  "FAM114A1",
  "FAM114A2",
  "FAM117A",
  "FAM117B",
  "FAM118A",
  "FAM118B",
  "FAM120A",
  "FAM120AOS",
  "FAM120B",
  "FAM120C",
  "FAM122A",
  "FAM122B",
  "FAM122C",
  "FAM124A",
  "FAM124B",
  "FAM126A",
  "FAM126B",
  "FAM127A",
  "FAM127B",
  "FAM127C",
  "FAM129A",
  "FAM129B",
  "FAM129C",
  "FAM131A",
  "FAM131B",
  "FAM131C",
  "FAM132A",
  "FAM133A",
  "FAM133B",
  "FAM133CP",
  "FAM133DP",
  "FAM134A",
  "FAM134B",
  "FAM134C",
  "FAM135A",
  "FAM135B",
  "FAM136A",
  "FAM136BP",
  "FAM138A",
  "FAM138B",
  "FAM138C",
  "FAM138D",
  "FAM138E",
  "FAM138F",
  "FAM149A",
  "FAM149B1",
  "FAM149B1P1",
  "FAM150A",
  "FAM150B",
  "FAM151A",
  "FAM151B",
  "FAM153A",
  "FAM153B",
  "FAM153C",
  "FAM155A",
  "FAM155A-IT1",
  "FAM155B",
  "FAM156A",
  "FAM156B",
  "FAM157A",
  "FAM157B",
  "FAM157C",
  "FAM159A",
  "FAM159B",
  "FAM160A1",
  "FAM160A2",
  "FAM160B1",
  "FAM160B2",
  "FAM161A",
  "FAM161B",
  "FAM162A",
  "FAM162B",
  "FAM163A",
  "FAM163B",
  "FAM166A",
  "FAM166B",
  "FAM167A",
  "FAM167A-AS1",
  "FAM167B",
  "FAM168A",
  "FAM168B",
  "FAM169A",
  "FAM169B",
  "FAM170A",
  "FAM170B",
  "FAM170B-AS1",
  "FAM171A1",
  "FAM171A2",
  "FAM171B",
  "FAM172A",
  "FAM172BP",
  "FAM173A",
  "FAM173B",
  "FAM174A",
  "FAM174B",
  "FAM175A",
  "FAM175B",
  "FAM177A1",
  "FAM177A1P1",
  "FAM177B",
  "FAM178B",
  "FAM179A",
  "FAM179B",
  "FAM180A",
  "FAM180B",
  "FAM181A",
  "FAM181A-AS1",
  "FAM181B",
  "FAM182A",
  "FAM182B",
  "FAM183A",
  "FAM183BP",
  "FAM183CP",
  "FAM183DP",
  "FAM183EP",
  "FAM184A",
  "FAM184B",
  "FAM185A",
  "FAM185BP",
  "FAM186A",
  "FAM186B",
  "FAM187A",
  "FAM187B",
  "FAM187B2P",
  "FAM188A",
  "FAM188B",
  "FAM188B2",
  "FAM189A1",
  "FAM189A2",
  "FAM189B",
  "FAM192A",
  "FAM192BP",
  "FAM193A",
  "FAM193B",
  "FAM196A",
  "FAM196B",
  "FAM197Y1P",
  "FAM197Y2P",
  "FAM197Y3",
  "FAM197Y4P",
  "FAM197Y5P",
  "FAM197Y6",
  "FAM197Y7P",
  "FAM197Y8",
  "FAM197Y9",
  "FAM197Y10",
  "FAM198A",
  "FAM198B",
  "FAM199X",
  "FAM199YP",
  "FAM200A",
  "FAM200B",
  "FAM201A",
  "FAM201B",
  "FAM201CP",
  "FAM202A",
  "FAM202B",
  "FAM202C",
  "FAM204A",
  "FAM204BP",
  "FAM204CP",
  "FAM204DP",
  "FAM205A",
  "FAM205BP",
  "FAM205C",
  "FAM206A",
  "FAM206BP",
  "FAM207A",
  "FAM207BP",
  "FAM207CP",
  "FAM208A",
  "FAM208B",
  "FAM209A",
  "FAM209B",
  "FAM210A",
  "FAM210B",
  "FAM210CP",
  "FAM212A",
  "FAM212B",
  "FAM212B-AS1",
  "FAM213A",
  "FAM213B",
  "FAM214A",
  "FAM214B",
  "FAM215A",
  "FAM215B",
  "FAM216A",
  "FAM216B",
  "FAM217A",
  "FAM217AP1",
  "FAM217B",
  "FAM218A",
  "FAM218BP",
  "FAM219A",
  "FAM219B",
  "FAM220A",
  "FAM220BP",
  "FAM220CP",
  "FAM221A",
  "FAM221B",
  "FAM222A",
  "FAM222A-AS1",
  "FAM222B",
  "FAM223A",
  "FAM223B",
  "FAM224A",
  "FAM224B",
  "FAM225A",
  "FAM225B",
  "FAM226A",
  "FAM226B",
  "FAM227A",
  "FAM227B",
  "FAM228A",
  "FAM228B",
  "FAM229A",
  "FAM229B",
  "FAM230A",
  "FAM230B",
  "FAM230C",
  "FAM231A",
  "FAM231B",
  "FAM231C",
  "FAM231D",
  "FAM231EP",
  "FAM234A",
  "FAM234B",
  "FAN1",
  "FANCA",
  "FANCB",
  "FANCC",
  "FANCD2",
  "FANCD2OS",
  "FANCD2P1",
  "FANCD2P2",
  "FANCE",
  "FANCF",
  "FANCG",
  "FANCI",
  "FANCL",
  "FANCM",
  "FANK1",
  "FANK1-AS1",
  "FAP",
  "FAR1",
  "FAR1-IT1",
  "FAR1P1",
  "FAR2",
  "FAR2P1",
  "FAR2P2",
  "FAR2P3",
  "FAR2P4",
  "FARP1",
  "FARP1-AS1",
  "FARP1-IT1",
  "FARP2",
  "FARS2",
  "FARSA",
  "FARSA-AS1",
  "FARSB",
  "FARSBP1",
  "FAS",
  "FAS-AS1",
  "FASLG",
  "FASN",
  "FASTK",
  "FASTKD1",
  "FASTKD2",
  "FASTKD3",
  "FASTKD5",
  "FAT1",
  "FAT1P1",
  "FAT2",
  "FAT3",
  "FAT4",
  "FATE1",
  "FAU",
  "FAUNA@",
  "FAUP1",
  "FAUP2",
  "FAUP3",
  "FAXC",
  "FAXDC2",
  "FBF1",
  "FBL",
  "FBLIM1",
  "FBLL1",
  "FBLN1",
  "FBLN2",
  "FBLN5",
  "FBLN7",
  "FBN1",
  "FBN2",
  "FBN3",
  "FBP1",
  "FBP2",
  "FBP2P1",
  "FBRS",
  "FBRSL1",
  "FBXL2",
  "FBXL3",
  "FBXL4",
  "FBXL5",
  "FBXL6",
  "FBXL7",
  "FBXL8",
  "FBXL12",
  "FBXL13",
  "FBXL14",
  "FBXL15",
  "FBXL16",
  "FBXL17",
  "FBXL18",
  "FBXL19",
  "FBXL19-AS1",
  "FBXL20",
  "FBXL21",
  "FBXL22",
  "FBXO2",
  "FBXO3",
  "FBXO3-AS1",
  "FBXO4",
  "FBXO5",
  "FBXO6",
  "FBXO7",
  "FBXO8",
  "FBXO9",
  "FBXO10",
  "FBXO11",
  "FBXO14",
  "FBXO15",
  "FBXO16",
  "FBXO17",
  "FBXO18",
  "FBXO21",
  "FBXO22",
  "FBXO22-AS1",
  "FBXO24",
  "FBXO25",
  "FBXO27",
  "FBXO28",
  "FBXO30",
  "FBXO31",
  "FBXO32",
  "FBXO33",
  "FBXO34",
  "FBXO36",
  "FBXO36-IT1",
  "FBXO36P1",
  "FBXO38",
  "FBXO39",
  "FBXO40",
  "FBXO41",
  "FBXO42",
  "FBXO43",
  "FBXO44",
  "FBXO45",
  "FBXO46",
  "FBXO47",
  "FBXO48",
  "FBXW2",
  "FBXW4",
  "FBXW4P1",
  "FBXW5",
  "FBXW7",
  "FBXW7-AS1",
  "FBXW8",
  "FBXW9",
  "FBXW10",
  "FBXW11",
  "FBXW11P1",
  "FBXW12",
  "FCAMR",
  "FCAR",
  "FCER1A",
  "FCER1G",
  "FCER2",
  "FCF1",
  "FCF1P1",
  "FCF1P2",
  "FCF1P3",
  "FCF1P4",
  "FCF1P5",
  "FCF1P6",
  "FCF1P7",
  "FCF1P8",
  "FCF1P9",
  "FCF1P10",
  "FCF1P11",
  "FCGBP",
  "FCGR1A",
  "FCGR1B",
  "FCGR1CP",
  "FCGR2A",
  "FCGR2B",
  "FCGR2C",
  "FCGR3A",
  "FCGR3B",
  "FCGRT",
  "FCHO1",
  "FCHO2",
  "FCHSD1",
  "FCHSD2",
  "FCMR",
  "FCMTE1",
  "FCMTE2",
  "FCMTE3",
  "FCN1",
  "FCN2",
  "FCN3",
  "FCP1",
  "FCP",
  "FCRL1",
  "FCRL2",
  "FCRL3",
  "FCRL4",
  "FCRL5",
  "FCRL6",
  "FCRL6P1",
  "FCRLA",
  "FCRLB",
  "FDCSP",
  "FDFT1",
  "FDPS",
  "FDPSP1",
  "FDPSP2",
  "FDPSP3",
  "FDPSP4",
  "FDPSP5",
  "FDPSP6",
  "FDPSP7",
  "FDPSP8",
  "FDPSP9",
  "FDPSP10",
  "FDX1",
  "FDX1P1",
  "FDX1P2",
  "FDX2",
  "FDXACB1",
  "FDXR",
  "FEB1",
  "FEB2",
  "FEB4",
  "FEB5",
  "FEB6",
  "FEB7",
  "FECH",
  "FECHP1",
  "FEM1A",
  "FEM1AP1",
  "FEM1AP2",
  "FEM1AP3",
  "FEM1AP4",
  "FEM1B",
  "FEM1C",
  "FEN1",
  "FEN1P1",
  "FENDRR",
  "FER",
  "FER1L4",
  "FER1L5",
  "FER1L6",
  "FER1L6-AS1",
  "FER1L6-AS2",
  "FERD3L",
  "FERMT1",
  "FERMT2",
  "FERMT3",
  "FERP1",
  "FES",
  "FETUB",
  "FEV",
  "FEZ1",
  "FEZ2",
  "FEZF1",
  "FEZF1-AS1",
  "FEZF2",
  "FFAR1",
  "FFAR2",
  "FFAR3",
  "FFAR4",
  "FGA",
  "FGB",
  "FGD1",
  "FGD2",
  "FGD3",
  "FGD4",
  "FGD5",
  "FGD5-AS1",
  "FGD5P1",
  "FGD6",
  "FGF1",
  "FGF2",
  "FGF3",
  "FGF4",
  "FGF5",
  "FGF6",
  "FGF7",
  "FGF7P1",
  "FGF7P2",
  "FGF7P3",
  "FGF7P4",
  "FGF7P5",
  "FGF7P6",
  "FGF7P7",
  "FGF7P8",
  "FGF8",
  "FGF9",
  "FGF10",
  "FGF10-AS1",
  "FGF11",
  "FGF12",
  "FGF12-AS1",
  "FGF12-AS2",
  "FGF12-AS3",
  "FGF13",
  "FGF13-AS1",
  "FGF14",
  "FGF14-AS1",
  "FGF14-AS2",
  "FGF14-IT1",
  "FGF16",
  "FGF17",
  "FGF18",
  "FGF19",
  "FGF20",
  "FGF21",
  "FGF22",
  "FGF23",
  "FGFBP1",
  "FGFBP2",
  "FGFBP3",
  "FGFR1",
  "FGFR1OP",
  "FGFR1OP2",
  "FGFR1OP2P1",
  "FGFR2",
  "FGFR3",
  "FGFR3P1",
  "FGFR3P2",
  "FGFR3P3",
  "FGFR3P4",
  "FGFR3P5",
  "FGFR3P6",
  "FGFR4",
  "FGFRL1",
  "FGG",
  "FGGY",
  "FGL1",
  "FGL2",
  "FGR",
  "FGS2",
  "FGS3",
  "FGS5",
  "FH",
  "FHAD1",
  "FHDC1",
  "FHIT",
  "FHL1",
  "FHL2",
  "FHL3",
  "FHL5",
  "FHOD1",
  "FHOD3",
  "FHP1",
  "FIBCD1",
  "FIBIN",
  "FIBP",
  "FICD",
  "FICP",
  "FIG4",
  "FIGLA",
  "FIGN",
  "FIGNL1",
  "FIGNL2",
  "FILIP1",
  "FILIP1L",
  "FILIP1LP1",
  "FIM1",
  "FIM3",
  "FIP1L1",
  "FIRRE",
  "FIS1",
  "FITM1",
  "FITM2",
  "FIZ1",
  "FJX1",
  "FKBP1A",
  "FKBP1A-SDCBP2",
  "FKBP1AP1",
  "FKBP1AP2",
  "FKBP1AP3",
  "FKBP1AP4",
  "FKBP1B",
  "FKBP1BP1",
  "FKBP1C",
  "FKBP2",
  "FKBP3",
  "FKBP4",
  "FKBP4P1",
  "FKBP4P2",
  "FKBP4P5",
  "FKBP4P6",
  "FKBP4P7",
  "FKBP4P8",
  "FKBP5",
  "FKBP6",
  "FKBP7",
  "FKBP8",
  "FKBP9",
  "FKBP9P1",
  "FKBP10",
  "FKBP11",
  "FKBP14",
  "FKBP15",
  "FKBPL",
  "FKRP",
  "FKTN",
  "FLAD1",
  "FLCN",
  "FLG",
  "FLG-AS1",
  "FLG2",
  "FLI1",
  "FLII",
  "FLNA",
  "FLNB",
  "FLNB-AS1",
  "FLNC",
  "FLOT1",
  "FLOT2",
  "FLRT1",
  "FLRT2",
  "FLRT3",
  "FLT1",
  "FLT1P1",
  "FLT3",
  "FLT3LG",
  "FLT4",
  "FLVCR1",
  "FLVCR1-AS1",
  "FLVCR2",
  "FLYWCH1",
  "FLYWCH1L1",
  "FLYWCH1P1",
  "FLYWCH2",
  "FMC1",
  "FMN1",
  "FMN2",
  "FMNL1",
  "FMNL2",
  "FMNL3",
  "FMO1",
  "FMO2",
  "FMO3",
  "FMO4",
  "FMO5",
  "FMO6P",
  "FMO7P",
  "FMO8P",
  "FMO9P",
  "FMO10P",
  "FMO11P",
  "FMOD",
  "FMR1",
  "FMR1-AS1",
  "FMR1-IT1",
  "FMR1NB",
  "FMR3",
  "FN1",
  "FN3K",
  "FN3KRP",
  "FNBP1",
  "FNBP1L",
  "FNBP1P1",
  "FNBP1P2",
  "FNBP4",
  "FNDC1",
  "FNDC1-IT1",
  "FNDC3A",
  "FNDC3B",
  "FNDC3CP",
  "FNDC4",
  "FNDC5",
  "FNDC7",
  "FNDC8",
  "FNDC9",
  "FNDC10",
  "FNDC11",
  "FNIP1",
  "FNIP2",
  "FNL1",
  "FNTA",
  "FNTAP1",
  "FNTAP2",
  "FNTB",
  "FNTBL1",
  "FNZ",
  "FOCAD",
  "FOCAD-AS1",
  "FOLH1",
  "FOLH1B",
  "FOLR1",
  "FOLR1P1",
  "FOLR2",
  "FOLR2L",
  "FOLR3",
  "FOLR3P1",
  "FOPNL",
  "FOS",
  "FOSB",
  "FOSL1",
  "FOSL1P1",
  "FOSL2",
  "FOX#",
  "FOXA1",
  "FOXA2",
  "FOXA3",
  "FOXB1",
  "FOXB2",
  "FOXC1",
  "FOXC2",
  "FOXC2-AS1",
  "FOXCUT",
  "FOXD1",
  "FOXD1-AS1",
  "FOXD2",
  "FOXD2-AS1",
  "FOXD3",
  "FOXD3-AS1",
  "FOXD4",
  "FOXD4L1",
  "FOXD4L3",
  "FOXD4L4",
  "FOXD4L5",
  "FOXD4L6",
  "FOXE1",
  "FOXE3",
  "FOXF1",
  "FOXF2",
  "FOXG1",
  "FOXG1-AS1",
  "FOXH1",
  "FOXI1",
  "FOXI2",
  "FOXI3",
  "FOXJ1",
  "FOXJ2",
  "FOXJ3",
  "FOXK1",
  "FOXK2",
  "FOXL1",
  "FOXL2",
  "FOXL2NB",
  "FOXM1",
  "FOXN1",
  "FOXN2",
  "FOXN3",
  "FOXN3-AS1",
  "FOXN3-AS2",
  "FOXN3P1",
  "FOXN4",
  "FOXO1",
  "FOXO1B",
  "FOXO3",
  "FOXO3B",
  "FOXO4",
  "FOXO6",
  "FOXP1",
  "FOXP1-AS1",
  "FOXP1-IT1",
  "FOXP2",
  "FOXP3",
  "FOXP4",
  "FOXP4-AS1",
  "FOXQ1",
  "FOXR1",
  "FOXR2",
  "FOXRED1",
  "FOXRED2",
  "FOXS1",
  "FPGS",
  "FPGT",
  "FPGT-TNNI3K",
  "FPR1",
  "FPR2",
  "FPR3",
  "FRA1A",
  "FRA1B",
  "FRA1C",
  "FRA1D",
  "FRA1E",
  "FRA1F",
  "FRA1G",
  "FRA1H",
  "FRA1I",
  "FRA1J",
  "FRA1K",
  "FRA1L",
  "FRA1M",
  "FRA2A",
  "FRA2B",
  "FRA2C",
  "FRA2D",
  "FRA2E",
  "FRA2F",
  "FRA2G",
  "FRA2H",
  "FRA2I",
  "FRA2J",
  "FRA2K",
  "FRA3A",
  "FRA3B",
  "FRA3C",
  "FRA3D",
  "FRA4A",
  "FRA4B",
  "FRA4C",
  "FRA4D",
  "FRA4E",
  "FRA5A",
  "FRA5B",
  "FRA5C",
  "FRA5D",
  "FRA5E",
  "FRA5F",
  "FRA5G",
  "FRA6A",
  "FRA6B",
  "FRA6C",
  "FRA6D",
  "FRA6E",
  "FRA6F",
  "FRA6G",
  "FRA7A",
  "FRA7B",
  "FRA7C",
  "FRA7D",
  "FRA7E",
  "FRA7F",
  "FRA7G",
  "FRA7H",
  "FRA7I",
  "FRA7J",
  "FRA8A",
  "FRA8B",
  "FRA8C",
  "FRA8D",
  "FRA8E",
  "FRA8F",
  "FRA9A",
  "FRA9B",
  "FRA9C",
  "FRA9D",
  "FRA9E",
  "FRA9F",
  "FRA10A",
  "FRA10AC1",
  "FRA10B",
  "FRA10C",
  "FRA10D",
  "FRA10E",
  "FRA10F",
  "FRA10G",
  "FRA11A",
  "FRA11B",
  "FRA11C",
  "FRA11D",
  "FRA11E",
  "FRA11F",
  "FRA11G",
  "FRA11H",
  "FRA11I",
  "FRA12A",
  "FRA12B",
  "FRA12C",
  "FRA12D",
  "FRA12E",
  "FRA13A",
  "FRA13B",
  "FRA13C",
  "FRA13D",
  "FRA14B",
  "FRA14C",
  "FRA15A",
  "FRA16A",
  "FRA16B",
  "FRA16C",
  "FRA16D",
  "FRA16E",
  "FRA17A",
  "FRA17B",
  "FRA18A",
  "FRA18B",
  "FRA18C",
  "FRA19A",
  "FRA19B",
  "FRA20A",
  "FRA20B",
  "FRA22A",
  "FRA22B",
  "FRAS1",
  "FRAT1",
  "FRAT2",
  "FRAXA",
  "FRAXB",
  "FRAXC",
  "FRAXD",
  "FRAXE",
  "FRAXF",
  "FRDA2",
  "FREM1",
  "FREM2",
  "FREM2-AS1",
  "FREM3",
  "FRG1",
  "FRG1BP",
  "FRG1CP",
  "FRG1DP",
  "FRG1EP",
  "FRG1HP",
  "FRG1JP",
  "FRG1KP",
  "FRG2",
  "FRG2B",
  "FRG2C",
  "FRG2DP",
  "FRG2EP",
  "FRG2FP",
  "FRG2GP",
  "FRG2HP",
  "FRG2IP",
  "FRG2JP",
  "FRG2KP",
  "FRG2LP",
  "FRG2MP",
  "FRGCA",
  "FRK",
  "FRMD1",
  "FRMD3",
  "FRMD4A",
  "FRMD4B",
  "FRMD5",
  "FRMD6",
  "FRMD6-AS1",
  "FRMD6-AS2",
  "FRMD7",
  "FRMD8",
  "FRMD8P1",
  "FRMPD1",
  "FRMPD2",
  "FRMPD2B",
  "FRMPD3",
  "FRMPD3-AS1",
  "FRMPD4",
  "FRMPD4-AS1",
  "FRRS1",
  "FRRS1L",
  "FRS2",
  "FRS3",
  "FRV1",
  "FRV2",
  "FRV3",
  "FRY",
  "FRY-AS1",
  "FRYL",
  "FRZB",
  "FSBP",
  "FSCB",
  "FSCN1",
  "FSCN1P1",
  "FSCN2",
  "FSCN3",
  "FSD1",
  "FSD1L",
  "FSD2",
  "FSHB",
  "FSHMD1A",
  "FSHMD1B",
  "FSHR",
  "FSIP1",
  "FSIP2",
  "FSIP2-AS1",
  "FST",
  "FSTL1",
  "FSTL3",
  "FSTL4",
  "FSTL5",
  "FTCD",
  "FTCD-AS1",
  "FTCDNL1",
  "FTH1",
  "FTH1P1",
  "FTH1P2",
  "FTH1P3",
  "FTH1P4",
  "FTH1P5",
  "FTH1P6",
  "FTH1P7",
  "FTH1P8",
  "FTH1P9",
  "FTH1P10",
  "FTH1P11",
  "FTH1P12",
  "FTH1P13",
  "FTH1P14",
  "FTH1P15",
  "FTH1P16",
  "FTH1P18",
  "FTH1P19",
  "FTH1P20",
  "FTH1P21",
  "FTH1P22",
  "FTH1P23",
  "FTH1P24",
  "FTH1P25",
  "FTH1P26",
  "FTH1P27",
  "FTHL14",
  "FTHL17",
  "FTL",
  "FTLP1",
  "FTLP2",
  "FTLP3",
  "FTLP4",
  "FTLP5",
  "FTLP6",
  "FTLP7",
  "FTLP8",
  "FTLP9",
  "FTLP10",
  "FTLP11",
  "FTLP12",
  "FTLP13",
  "FTLP14",
  "FTLP15",
  "FTLP16",
  "FTLP17",
  "FTLP18",
  "FTLP19",
  "FTMT",
  "FTO",
  "FTO-IT1",
  "FTOP1",
  "FTSJ1",
  "FTSJ3",
  "FTX",
  "FUBP1",
  "FUBP3",
  "FUCA1",
  "FUCA1P1",
  "FUCA2",
  "FUK",
  "FUNDC1",
  "FUNDC2",
  "FUNDC2P1",
  "FUNDC2P2",
  "FUNDC2P3",
  "FUNDC2P4",
  "FUOM",
  "FURIN",
  "FUS",
  "FUSE",
  "FUT1",
  "FUT2",
  "FUT3",
  "FUT4",
  "FUT5",
  "FUT6",
  "FUT7",
  "FUT8",
  "FUT8-AS1",
  "FUT9",
  "FUT10",
  "FUT11",
  "FUZ",
  "FXN",
  "FXNP1",
  "FXNP2",
  "FXR1",
  "FXR2",
  "FXYD1",
  "FXYD2",
  "FXYD3",
  "FXYD4",
  "FXYD5",
  "FXYD6",
  "FXYD6-FXYD2",
  "FXYD6P1",
  "FXYD6P2",
  "FXYD6P3",
  "FXYD7",
  "FYB",
  "FYCO1",
  "FYN",
  "FYTTD1",
  "FYTTD1P1",
  "FZD1",
  "FZD2",
  "FZD3",
  "FZD4",
  "FZD5",
  "FZD6",
  "FZD7",
  "FZD8",
  "FZD9",
  "FZD10",
  "FZD10-AS1",
  "FZR1",
  "G2E3",
  "G3BP1",
  "G3BP2",
  "G6PC",
  "G6PC2",
  "G6PC3",
  "G6PD",
  "G6PDL",
  "G6PR",
  "G7P1",
  "GAA",
  "GAB1",
  "GAB2",
  "GAB3",
  "GAB4",
  "GABARAP",
  "GABARAPL1",
  "GABARAPL2",
  "GABARAPL3",
  "GABBR1",
  "GABBR2",
  "GABPA",
  "GABPAP",
  "GABPB1",
  "GABPB1-AS1",
  "GABPB2",
  "GABRA1",
  "GABRA2",
  "GABRA3",
  "GABRA4",
  "GABRA5",
  "GABRA6",
  "GABRB1",
  "GABRB2",
  "GABRB3",
  "GABRD",
  "GABRE",
  "GABRG1",
  "GABRG2",
  "GABRG3",
  "GABRG3-AS1",
  "GABRP",
  "GABRQ",
  "GABRR1",
  "GABRR2",
  "GABRR3",
  "GACAT1",
  "GACAT2",
  "GACAT3",
  "GAD1",
  "GAD2",
  "GAD3",
  "GADD45A",
  "GADD45AP1",
  "GADD45B",
  "GADD45G",
  "GADD45GIP1",
  "GADL1",
  "GAGE1",
  "GAGE2A",
  "GAGE2B",
  "GAGE2C",
  "GAGE2D",
  "GAGE2E",
  "GAGE3",
  "GAGE4",
  "GAGE5",
  "GAGE6",
  "GAGE7",
  "GAGE8",
  "GAGE10",
  "GAGE12B",
  "GAGE12C",
  "GAGE12D",
  "GAGE12E",
  "GAGE12F",
  "GAGE12G",
  "GAGE12H",
  "GAGE12I",
  "GAGE12J",
  "GAGE13",
  "GAK",
  "GAL",
  "GAL3ST1",
  "GAL3ST2",
  "GAL3ST3",
  "GAL3ST4",
  "GALC",
  "GALE",
  "GALK1",
  "GALK2",
  "GALM",
  "GALNS",
  "GALNT1",
  "GALNT2",
  "GALNT3",
  "GALNT4",
  "GALNT5",
  "GALNT6",
  "GALNT7",
  "GALNT8",
  "GALNT9",
  "GALNT10",
  "GALNT11",
  "GALNT12",
  "GALNT13",
  "GALNT14",
  "GALNT15",
  "GALNT16",
  "GALNT18",
  "GALNTL5",
  "GALNTL6",
  "GALP",
  "GALR1",
  "GALR2",
  "GALR3",
  "GALT",
  "GAMT",
  "GAMTP1",
  "GAMTP2",
  "GAN",
  "GANAB",
  "GANC",
  "GAP43",
  "GAPDH",
  "GAPDHL5",
  "GAPDHP1",
  "GAPDHP2",
  "GAPDHP14",
  "GAPDHP15",
  "GAPDHP16",
  "GAPDHP17",
  "GAPDHP19",
  "GAPDHP20",
  "GAPDHP21",
  "GAPDHP22",
  "GAPDHP23",
  "GAPDHP24",
  "GAPDHP25",
  "GAPDHP26",
  "GAPDHP27",
  "GAPDHP28",
  "GAPDHP29",
  "GAPDHP30",
  "GAPDHP31",
  "GAPDHP32",
  "GAPDHP33",
  "GAPDHP34",
  "GAPDHP35",
  "GAPDHP36",
  "GAPDHP37",
  "GAPDHP38",
  "GAPDHP39",
  "GAPDHP40",
  "GAPDHP41",
  "GAPDHP42",
  "GAPDHP43",
  "GAPDHP44",
  "GAPDHP45",
  "GAPDHP46",
  "GAPDHP47",
  "GAPDHP48",
  "GAPDHP49",
  "GAPDHP50",
  "GAPDHP51",
  "GAPDHP52",
  "GAPDHP53",
  "GAPDHP54",
  "GAPDHP55",
  "GAPDHP56",
  "GAPDHP57",
  "GAPDHP58",
  "GAPDHP59",
  "GAPDHP60",
  "GAPDHP61",
  "GAPDHP62",
  "GAPDHP63",
  "GAPDHP64",
  "GAPDHP65",
  "GAPDHP66",
  "GAPDHP67",
  "GAPDHP68",
  "GAPDHP69",
  "GAPDHP70",
  "GAPDHP71",
  "GAPDHP72",
  "GAPDHP73",
  "GAPDHP74",
  "GAPDHP75",
  "GAPDHP76",
  "GAPDHS",
  "GAPLINC",
  "GAPT",
  "GAPVD1",
  "GAR1",
  "GAREM1",
  "GAREM2",
  "GARNL3",
  "GARS",
  "GARSP1",
  "GART",
  "GAS1",
  "GAS1RR",
  "GAS2",
  "GAS2L1",
  "GAS2L1P1",
  "GAS2L1P2",
  "GAS2L2",
  "GAS2L3",
  "GAS5",
  "GAS5-AS1",
  "GAS6",
  "GAS6-AS1",
  "GAS6-AS2",
  "GAS7",
  "GAS8",
  "GAS8-AS1",
  "GAST",
  "GATA1",
  "GATA2",
  "GATA2-AS1",
  "GATA3",
  "GATA3-AS1",
  "GATA4",
  "GATA5",
  "GATA6",
  "GATA6-AS1",
  "GATAD1",
  "GATAD2A",
  "GATAD2B",
  "GATB",
  "GATC",
  "GATM",
  "GATM-AS1",
  "GATS",
  "GATSL2",
  "GATSL3",
  "GBA",
  "GBA2",
  "GBA3",
  "GBAP1",
  "GBAS",
  "GBD2",
  "GBD3",
  "GBE1",
  "GBF1",
  "GBGT1",
  "GBP1",
  "GBP1P1",
  "GBP2",
  "GBP3",
  "GBP4",
  "GBP5",
  "GBP6",
  "GBP7",
  "GBX1",
  "GBX2",
  "GC",
  "GCA",
  "GCASPC",
  "GCAT",
  "GCATP1",
  "GCC1",
  "GCC2",
  "GCC2-AS1",
  "GCDH",
  "GCF1",
  "GCFC2",
  "GCG",
  "GCGR",
  "GCH1",
  "GCHFR",
  "GCK",
  "GCKR",
  "GCLC",
  "GCLM",
  "GCM1",
  "GCM2",
  "GCN1",
  "GCNA",
  "GCNT1",
  "GCNT1P1",
  "GCNT1P2",
  "GCNT1P3",
  "GCNT1P4",
  "GCNT1P5",
  "GCNT2",
  "GCNT3",
  "GCNT4",
  "GCNT6",
  "GCNT7",
  "GCOM1",
  "GCOM2",
  "GCSAM",
  "GCSAML",
  "GCSAML-AS1",
  "GCSH",
  "GCSHP1",
  "GCSHP2",
  "GCSHP3",
  "GCSHP4",
  "GCSHP5",
  "GCUD1",
  "GCY",
  "GDA",
  "GDAP1",
  "GDAP1L1",
  "GDAP2",
  "GDE1",
  "GDF1",
  "GDF2",
  "GDF3",
  "GDF4",
  "GDF5",
  "GDF5OS",
  "GDF6",
  "GDF7",
  "GDF9",
  "GDF10",
  "GDF11",
  "GDF15",
  "GDI1",
  "GDI2",
  "GDI2P1",
  "GDI2P2",
  "GDNF",
  "GDNF-AS1",
  "GDPD1",
  "GDPD2",
  "GDPD3",
  "GDPD4",
  "GDPD5",
  "GDPGP1",
  "GEM",
  "GEMIN2",
  "GEMIN2P1",
  "GEMIN2P2",
  "GEMIN4",
  "GEMIN5",
  "GEMIN6",
  "GEMIN7",
  "GEMIN8",
  "GEMIN8P1",
  "GEMIN8P2",
  "GEMIN8P3",
  "GEMIN8P4",
  "GEN1",
  "GET4",
  "GFAP",
  "GFER",
  "GFI1",
  "GFI1B",
  "GFM1",
  "GFM2",
  "GFOD1",
  "GFOD1-AS1",
  "GFOD2",
  "GFPT1",
  "GFPT2",
  "GFRA1",
  "GFRA2",
  "GFRA3",
  "GFRA4",
  "GFRAL",
  "GFY",
  "GGA1",
  "GGA2",
  "GGA3",
  "GGACT",
  "GGCT",
  "GGCX",
  "GGH",
  "GGN",
  "GGNBP1",
  "GGNBP2",
  "GGPS1",
  "GGT1",
  "GGT2",
  "GGT3P",
  "GGT4P",
  "GGT5",
  "GGT6",
  "GGT7",
  "GGT8P",
  "GGTA1P",
  "GGTA2P",
  "GGTB1",
  "GGTL1",
  "GGTL2",
  "GGTLC1",
  "GGTLC2",
  "GGTLC3",
  "GGTLC4P",
  "GGTLC5P",
  "GH1",
  "GH2",
  "GHDC",
  "GHET1",
  "GHITM",
  "GHR",
  "GHRH",
  "GHRHR",
  "GHRL",
  "GHRLOS",
  "GHSR",
  "GID4",
  "GID8",
  "GIF",
  "GIGYF1",
  "GIGYF2",
  "GIMAP1",
  "GIMAP1-GIMAP5",
  "GIMAP2",
  "GIMAP3P",
  "GIMAP4",
  "GIMAP5",
  "GIMAP6",
  "GIMAP7",
  "GIMAP8",
  "GIMD1",
  "GIN1",
  "GINGF2",
  "GINGF3",
  "GINGF4",
  "GINM1",
  "GINS1",
  "GINS2",
  "GINS3",
  "GINS4",
  "GIP",
  "GIPC1",
  "GIPC2",
  "GIPC3",
  "GIPR",
  "GIT1",
  "GIT2",
  "GJA1",
  "GJA1P1",
  "GJA2",
  "GJA3",
  "GJA4",
  "GJA5",
  "GJA6P",
  "GJA8",
  "GJA9",
  "GJA10",
  "GJA11",
  "GJB1",
  "GJB2",
  "GJB3",
  "GJB4",
  "GJB5",
  "GJB6",
  "GJB7",
  "GJC1",
  "GJC2",
  "GJC3",
  "GJD2",
  "GJD3",
  "GJD4",
  "GJE1",
  "GK",
  "GK-AS1",
  "GK-IT1",
  "GK2",
  "GK3P",
  "GK4P",
  "GK5",
  "GK6P",
  "GKAP1",
  "GKN1",
  "GKN2",
  "GKN3P",
  "GKP4",
  "GKP5",
  "GLA",
  "GLAT",
  "GLB1",
  "GLB1L",
  "GLB1L2",
  "GLB1L3",
  "GLC#",
  "GLC1B",
  "GLC1C",
  "GLC1D",
  "GLC1H",
  "GLC1I",
  "GLC1J",
  "GLC1K",
  "GLC1L",
  "GLC1M",
  "GLC1N",
  "GLC1P",
  "GLC1Q",
  "GLC2A",
  "GLC3B",
  "GLC3C",
  "GLCCI1",
  "GLCE",
  "GLDC",
  "GLDCP1",
  "GLDN",
  "GLE1",
  "GLG1",
  "GLI1",
  "GLI2",
  "GLI3",
  "GLI4",
  "GLIDR",
  "GLIPR1",
  "GLIPR1L1",
  "GLIPR1L2",
  "GLIPR2",
  "GLIS1",
  "GLIS2",
  "GLIS2-AS1",
  "GLIS3",
  "GLIS3-AS1",
  "GLMN",
  "GLMP",
  "GLO1",
  "GLOD4",
  "GLOD5",
  "GLP1R",
  "GLP2R",
  "GLRA1",
  "GLRA2",
  "GLRA3",
  "GLRA4",
  "GLRB",
  "GLRX",
  "GLRX2",
  "GLRX3",
  "GLRX3P1",
  "GLRX3P2",
  "GLRX5",
  "GLRXP1",
  "GLRXP2",
  "GLRXP3",
  "GLS",
  "GLS2",
  "GLT1D1",
  "GLT6D1",
  "GLT8D1",
  "GLT8D2",
  "GLTP",
  "GLTPD2",
  "GLTPP1",
  "GLTSCR1",
  "GLTSCR1-AS1",
  "GLTSCR1L",
  "GLTSCR2",
  "GLTSCR2-AS1",
  "GLUD1",
  "GLUD1P2",
  "GLUD1P3",
  "GLUD1P4",
  "GLUD1P5",
  "GLUD1P6",
  "GLUD1P7",
  "GLUD1P8",
  "GLUD1P9",
  "GLUD2",
  "GLUL",
  "GLULP1",
  "GLULP2",
  "GLULP3",
  "GLULP4",
  "GLULP5",
  "GLULP6",
  "GLUR7",
  "GLYAT",
  "GLYATL1",
  "GLYATL1P1",
  "GLYATL1P2",
  "GLYATL1P3",
  "GLYATL1P4",
  "GLYATL2",
  "GLYATL3",
  "GLYB",
  "GLYCAM1",
  "GLYCTK",
  "GLYCTK-AS1",
  "GLYR1",
  "GLYS1",
  "GM2A",
  "GM2AP1",
  "GM2AP2",
  "GMCL1",
  "GMCL1P1",
  "GMCL1P2",
  "GMDS",
  "GMDS-AS1",
  "GMEB1",
  "GMEB2",
  "GMFA",
  "GMFB",
  "GMFBP1",
  "GMFG",
  "GMIP",
  "GML",
  "GMNC",
  "GMNN",
  "GMPPA",
  "GMPPB",
  "GMPR",
  "GMPR2",
  "GMPS",
  "GMPSP1",
  "GNA11",
  "GNA12",
  "GNA13",
  "GNA14",
  "GNA14-AS1",
  "GNA15",
  "GNAI1",
  "GNAI2",
  "GNAI2P1",
  "GNAI2P2",
  "GNAI3",
  "GNAL",
  "GNAO1",
  "GNAQ",
  "GNAQP1",
  "GNAS",
  "GNAS-AS1",
  "GNAT1",
  "GNAT2",
  "GNAT3",
  "GNAZ",
  "GNB1",
  "GNB1L",
  "GNB2",
  "GNB3",
  "GNB4",
  "GNB5",
  "GNE",
  "GNG2",
  "GNG3",
  "GNG4",
  "GNG5",
  "GNG5P1",
  "GNG5P2",
  "GNG5P3",
  "GNG5P4",
  "GNG5P5",
  "GNG7",
  "GNG8",
  "GNG10",
  "GNG10P1",
  "GNG11",
  "GNG12",
  "GNG12-AS1",
  "GNG13",
  "GNGT1",
  "GNGT2",
  "GNL1",
  "GNL2",
  "GNL2P1",
  "GNL3",
  "GNL3L",
  "GNL3LP1",
  "GNLY",
  "GNMT",
  "GNPAT",
  "GNPATP",
  "GNPDA1",
  "GNPDA2",
  "GNPNAT1",
  "GNPTAB",
  "GNPTG",
  "GNRH1",
  "GNRH2",
  "GNRHR",
  "GNRHR2",
  "GNRHR2P1",
  "GNS",
  "GOLGA1",
  "GOLGA2",
  "GOLGA2P1",
  "GOLGA2P2Y",
  "GOLGA2P3Y",
  "GOLGA2P4",
  "GOLGA2P5",
  "GOLGA2P6",
  "GOLGA2P7",
  "GOLGA2P8",
  "GOLGA2P9",
  "GOLGA2P10",
  "GOLGA2P11",
  "GOLGA3",
  "GOLGA4",
  "GOLGA4P1",
  "GOLGA4P2",
  "GOLGA4P3",
  "GOLGA5",
  "GOLGA5P1",
  "GOLGA6A",
  "GOLGA6B",
  "GOLGA6C",
  "GOLGA6D",
  "GOLGA6L1",
  "GOLGA6L2",
  "GOLGA6L3",
  "GOLGA6L4",
  "GOLGA6L5P",
  "GOLGA6L6",
  "GOLGA6L7P",
  "GOLGA6L9",
  "GOLGA6L10",
  "GOLGA6L11P",
  "GOLGA6L12P",
  "GOLGA6L13P",
  "GOLGA6L14P",
  "GOLGA6L16P",
  "GOLGA6L17P",
  "GOLGA6L19",
  "GOLGA6L22",
  "GOLGA7",
  "GOLGA7B",
  "GOLGA8A",
  "GOLGA8B",
  "GOLGA8CP",
  "GOLGA8DP",
  "GOLGA8EP",
  "GOLGA8F",
  "GOLGA8G",
  "GOLGA8H",
  "GOLGA8IP",
  "GOLGA8J",
  "GOLGA8K",
  "GOLGA8M",
  "GOLGA8N",
  "GOLGA8O",
  "GOLGA8Q",
  "GOLGA8R",
  "GOLGA8S",
  "GOLGA8T",
  "GOLGA8UP",
  "GOLGA8VP",
  "GOLGB1",
  "GOLIM4",
  "GOLM1",
  "GOLPH3",
  "GOLPH3L",
  "GOLT1A",
  "GOLT1B",
  "GON4L",
  "GON7",
  "GOPC",
  "GORAB",
  "GORASP1",
  "GORASP2",
  "GOSR1",
  "GOSR2",
  "GOT1",
  "GOT1L1",
  "GOT2",
  "GOT2P1",
  "GOT2P2",
  "GOT2P3",
  "GOT2P4",
  "GOT2P5",
  "GP1BA",
  "GP1BB",
  "GP2",
  "GP5",
  "GP6",
  "GP9",
  "GPA33",
  "GPAA1",
  "GPAA1P1",
  "GPAA1P2",
  "GPALPP1",
  "GPAM",
  "GPANK1",
  "GPAT2",
  "GPAT2P1",
  "GPAT2P2",
  "GPAT3",
  "GPAT4",
  "GPATCH1",
  "GPATCH2",
  "GPATCH2L",
  "GPATCH3",
  "GPATCH4",
  "GPATCH8",
  "GPATCH11",
  "GPBAR1",
  "GPBP1",
  "GPBP1L1",
  "GPB",
  "GPC1",
  "GPC2",
  "GPC3",
  "GPC4",
  "GPC5",
  "GPC5-AS1",
  "GPC5-AS2",
  "GPC5-IT1",
  "GPC6",
  "GPC6-AS1",
  "GPC6-AS2",
  "GPCPD1",
  "GPD1",
  "GPD1L",
  "GPD2",
  "GPDS1",
  "GPER1",
  "GPHA2",
  "GPHB5",
  "GPHN",
  "GPI",
  "GPIHBP1",
  "GPKOW",
  "GPLD1",
  "GPM6A",
  "GPM6B",
  "GPM6BP1",
  "GPM6BP2",
  "GPM6BP3",
  "GPN1",
  "GPN2",
  "GPN3",
  "GPN3P1",
  "GPNMB",
  "GPR1",
  "GPR1-AS",
  "GPR3",
  "GPR4",
  "GPR6",
  "GPR12",
  "GPR15",
  "GPR17",
  "GPR18",
  "GPR19",
  "GPR20",
  "GPR21",
  "GPR22",
  "GPR25",
  "GPR26",
  "GPR27",
  "GPR31",
  "GPR32",
  "GPR32P1",
  "GPR33",
  "GPR34",
  "GPR34P",
  "GPR35",
  "GPR36",
  "GPR37",
  "GPR37L1",
  "GPR39",
  "GPR42",
  "GPR45",
  "GPR50",
  "GPR50-AS1",
  "GPR52",
  "GPR53P",
  "GPR55",
  "GPR61",
  "GPR62",
  "GPR63",
  "GPR65",
  "GPR68",
  "GPR75",
  "GPR75-ASB3",
  "GPR78",
  "GPR79",
  "GPR82",
  "GPR83",
  "GPR84",
  "GPR85",
  "GPR87",
  "GPR88",
  "GPR89A",
  "GPR89B",
  "GPR89P",
  "GPR90",
  "GPR101",
  "GPR107",
  "GPR108",
  "GPR119",
  "GPR130",
  "GPR132",
  "GPR135",
  "GPR137",
  "GPR137B",
  "GPR137C",
  "GPR139",
  "GPR141",
  "GPR142",
  "GPR143",
  "GPR143P",
  "GPR146",
  "GPR148",
  "GPR149",
  "GPR150",
  "GPR151",
  "GPR152",
  "GPR153",
  "GPR155",
  "GPR156",
  "GPR157",
  "GPR158",
  "GPR158-AS1",
  "GPR160",
  "GPR161",
  "GPR162",
  "GPR165P",
  "GPR166P",
  "GPR171",
  "GPR173",
  "GPR174",
  "GPR176",
  "GPR179",
  "GPR180",
  "GPR182",
  "GPR183",
  "GPRASP1",
  "GPRASP2",
  "GPRC5A",
  "GPRC5B",
  "GPRC5C",
  "GPRC5D",
  "GPRC6A",
  "GPRIN1",
  "GPRIN2",
  "GPRIN3",
  "GPS1",
  "GPS2",
  "GPS2P1",
  "GPS2P2",
  "GPSM1",
  "GPSM2",
  "GPSM3",
  "GPT",
  "GPT2",
  "GPX1",
  "GPX1P1",
  "GPX1P2",
  "GPX2",
  "GPX3",
  "GPX4",
  "GPX5",
  "GPX6",
  "GPX7",
  "GPX8",
  "GRAMD1A",
  "GRAMD1B",
  "GRAMD1C",
  "GRAMD2",
  "GRAMD3",
  "GRAMD4",
  "GRAMD4P1",
  "GRAMD4P2",
  "GRAMD4P3",
  "GRAMD4P4",
  "GRAMD4P5",
  "GRAMD4P6",
  "GRAMD4P7",
  "GRAMD4P8",
  "GRAP",
  "GRAP2",
  "GRAPL",
  "GRASP",
  "GRASPOS",
  "GRB2",
  "GRB7",
  "GRB10",
  "GRB14",
  "GREB1",
  "GREB1L",
  "GREM1",
  "GREM2",
  "GRHL1",
  "GRHL2",
  "GRHL3",
  "GRHPR",
  "GRIA1",
  "GRIA2",
  "GRIA3",
  "GRIA4",
  "GRID1",
  "GRID1-AS1",
  "GRID2",
  "GRID2IP",
  "GRIFIN",
  "GRIK1",
  "GRIK1-AS1",
  "GRIK1-AS2",
  "GRIK2",
  "GRIK3",
  "GRIK4",
  "GRIK5",
  "GRIN1",
  "GRIN2A",
  "GRIN2B",
  "GRIN2C",
  "GRIN2D",
  "GRIN3A",
  "GRIN3B",
  "GRINA",
  "GRIP1",
  "GRIP2",
  "GRIPAP1",
  "GRK1",
  "GRK2",
  "GRK3",
  "GRK4",
  "GRK5",
  "GRK5-IT1",
  "GRK6",
  "GRK6P1",
  "GRK7",
  "GRM1",
  "GRM2",
  "GRM3",
  "GRM4",
  "GRM5",
  "GRM5-AS1",
  "GRM6",
  "GRM7",
  "GRM7-AS1",
  "GRM7-AS2",
  "GRM7-AS3",
  "GRM8",
  "GRN",
  "GRP",
  "GRPEL1",
  "GRPEL2",
  "GRPEL2-AS1",
  "GRPEL2P1",
  "GRPEL2P2",
  "GRPEL2P3",
  "GRPR",
  "GRSF1",
  "GRTP1",
  "GRTP1-AS1",
  "GRWD1",
  "GRXCR1",
  "GRXCR2",
  "G0S2",
  "GSAP",
  "GSC",
  "GSC2",
  "GSDMA",
  "GSDMB",
  "GSDMC",
  "GSDMD",
  "GSE1",
  "GSG1",
  "GSG1L",
  "GSG1L2",
  "GSG2",
  "GSK1",
  "GSK2",
  "GSK3A",
  "GSK3B",
  "GSKIP",
  "GSM1",
  "GSN",
  "GSN-AS1",
  "GSPT1",
  "GSPT2",
  "GSR",
  "GSS",
  "GSTA1",
  "GSTA2",
  "GSTA3",
  "GSTA4",
  "GSTA5",
  "GSTA6P",
  "GSTA7P",
  "GSTA8P",
  "GSTA9P",
  "GSTA10P",
  "GSTA11P",
  "GSTA12P",
  "GSTCD",
  "GSTK1",
  "GSTM1",
  "GSTM2",
  "GSTM2P1",
  "GSTM3",
  "GSTM3P1",
  "GSTM3P2",
  "GSTM4",
  "GSTM5",
  "GSTM5P1",
  "GSTO1",
  "GSTO2",
  "GSTO3P",
  "GSTP1",
  "GSTP1P1",
  "GSTT1",
  "GSTT1-AS1",
  "GSTT2",
  "GSTT2B",
  "GSTTP1",
  "GSTTP2",
  "GSTZ1",
  "GSX1",
  "GSX2",
  "GTA",
  "GTDC1",
  "GTF2A1",
  "GTF2A1L",
  "GTF2A2",
  "GTF2B",
  "GTF2E1",
  "GTF2E2",
  "GTF2F1",
  "GTF2F2",
  "GTF2F2P1",
  "GTF2F2P2",
  "GTF2H1",
  "GTF2H2",
  "GTF2H2B",
  "GTF2H2C",
  "GTF2H2C_2",
  "GTF2H3",
  "GTF2H4",
  "GTF2H5",
  "GTF2I",
  "GTF2IP1",
  "GTF2IP2",
  "GTF2IP3",
  "GTF2IP4",
  "GTF2IP5",
  "GTF2IP6",
  "GTF2IP7",
  "GTF2IP8",
  "GTF2IP9",
  "GTF2IP10",
  "GTF2IP11",
  "GTF2IP12",
  "GTF2IP13",
  "GTF2IP14",
  "GTF2IP15",
  "GTF2IP16",
  "GTF2IP17",
  "GTF2IP18",
  "GTF2IP19",
  "GTF2IP20",
  "GTF2IP21",
  "GTF2IP22",
  "GTF2IP23",
  "GTF2IRD1",
  "GTF2IRD1P1",
  "GTF2IRD2",
  "GTF2IRD2B",
  "GTF2IRD2P1",
  "GTF3A",
  "GTF3AP1",
  "GTF3AP2",
  "GTF3AP3",
  "GTF3AP4",
  "GTF3AP5",
  "GTF3AP6",
  "GTF3BAP1",
  "GTF3BAP2",
  "GTF3BAP3",
  "GTF3C1",
  "GTF3C2",
  "GTF3C2-AS1",
  "GTF3C3",
  "GTF3C4",
  "GTF3C5",
  "GTF3C6",
  "GTPBP1",
  "GTPBP2",
  "GTPBP3",
  "GTPBP4",
  "GTPBP6",
  "GTPBP8",
  "GTPBP10",
  "GTS",
  "GTSCR1",
  "GTSE1",
  "GTSE1-AS1",
  "GTSF1",
  "GTSF1L",
  "GUCA1A",
  "GUCA1B",
  "GUCA1C",
  "GUCA2A",
  "GUCA2B",
  "GUCD1",
  "GUCY1A2",
  "GUCY1A3",
  "GUCY1B2",
  "GUCY1B3",
  "GUCY2C",
  "GUCY2D",
  "GUCY2EP",
  "GUCY2F",
  "GUCY2GP",
  "GUF1",
  "GUK1",
  "GUK2",
  "GULOP",
  "GULP1",
  "GUSB",
  "GUSBP1",
  "GUSBP2",
  "GUSBP3",
  "GUSBP4",
  "GUSBP5",
  "GUSBP6",
  "GUSBP7",
  "GUSBP8",
  "GUSBP9",
  "GUSBP10",
  "GUSBP11",
  "GUSBP12",
  "GUSM",
  "GVINP1",
  "GVINP2",
  "GVQW1",
  "GVQW2",
  "GXYLT1",
  "GXYLT1P1",
  "GXYLT1P2",
  "GXYLT1P3",
  "GXYLT1P4",
  "GXYLT1P5",
  "GXYLT1P6",
  "GXYLT2",
  "GYG1",
  "GYG1P1",
  "GYG1P2",
  "GYG1P3",
  "GYG2",
  "GYG2-AS1",
  "GYG2P1",
  "GYG2P2",
  "GYPA",
  "GYPB",
  "GYPC",
  "GYPE",
  "GYS1",
  "GYS2",
  "GZF1",
  "GZMA",
  "GZMAP1",
  "GZMB",
  "GZMH",
  "GZMK",
  "GZMM",
  "H1F0",
  "H1FNT",
  "H1FOO",
  "H1FX",
  "H1FX-AS1",
  "H2AFB1",
  "H2AFB2",
  "H2AFB3",
  "H2AFJ",
  "H2AFV",
  "H2AFVP1",
  "H2AFX",
  "H2AFY",
  "H2AFY2",
  "H2AFZ",
  "H2AFZP1",
  "H2AFZP2",
  "H2AFZP3",
  "H2AFZP4",
  "H2AFZP5",
  "H2AFZP6",
  "H2BFM",
  "H2BFS",
  "H2BFWT",
  "H2BFXP",
  "H3F3A",
  "H3F3AP1",
  "H3F3AP2",
  "H3F3AP3",
  "H3F3AP4",
  "H3F3AP5",
  "H3F3AP6",
  "H3F3B",
  "H3F3BP1",
  "H3F3BP2",
  "H3F3C",
  "H4F3",
  "H6PD",
  "H19",
  "HAAO",
  "HABP2",
  "HABP4",
  "HACD1",
  "HACD2",
  "HACD3",
  "HACD4",
  "HACE1",
  "HACL1",
  "HADH",
  "HADHA",
  "HADHAP1",
  "HADHAP2",
  "HADHB",
  "HAGH",
  "HAGHL",
  "HAGLR",
  "HAGLROS",
  "HAL",
  "HAMP",
  "HAND1",
  "HAND2",
  "HAND2-AS1",
  "HAO1",
  "HAO2",
  "HAO2-IT1",
  "HAO3",
  "HAOL",
  "HAP1",
  "HAPLN1",
  "HAPLN2",
  "HAPLN3",
  "HAPLN4",
  "HAPP",
  "HAR1A",
  "HAR1B",
  "HARBI1",
  "HARS",
  "HARS2",
  "HAS1",
  "HAS2",
  "HAS2-AS1",
  "HAS3",
  "HAT1",
  "HAUS1",
  "HAUS1P1",
  "HAUS1P2",
  "HAUS1P3",
  "HAUS2",
  "HAUS3",
  "HAUS4",
  "HAUS4P1",
  "HAUS5",
  "HAUS6",
  "HAUS6P1",
  "HAUS6P2",
  "HAUS6P3",
  "HAUS7",
  "HAUS8",
  "HAUS8P1",
  "HAVCR1",
  "HAVCR1P1",
  "HAVCR1P2",
  "HAVCR2",
  "HAX1",
  "HBA1",
  "HBA2",
  "HBAP1",
  "HBB",
  "HBBP1",
  "HBD",
  "HBE1",
  "HBEGF",
  "HBG1",
  "HBG2",
  "HBM",
  "HBP1",
  "HBQ1",
  "HBS1L",
  "HBZ",
  "HBZP1",
  "HCAR1",
  "HCAR2",
  "HCAR3",
  "HCCAT5",
  "HCCS",
  "HCFC1",
  "HCFC1-AS1",
  "HCFC1R1",
  "HCFC2",
  "HCFC2P1",
  "HCG2P1",
  "HCG2P2",
  "HCG2P4",
  "HCG2P6",
  "HCG2P7",
  "HCG2P8",
  "HCG4",
  "HCG4B",
  "HCG4P1",
  "HCG4P2",
  "HCG4P3",
  "HCG4P4",
  "HCG4P5",
  "HCG4P7",
  "HCG4P8",
  "HCG4P9",
  "HCG4P11",
  "HCG8",
  "HCG9",
  "HCG9P1",
  "HCG9P2",
  "HCG9P3",
  "HCG9P5",
  "HCG11",
  "HCG13P",
  "HCG14",
  "HCG15",
  "HCG16",
  "HCG17",
  "HCG18",
  "HCG19P",
  "HCG20",
  "HCG21",
  "HCG22",
  "HCG23",
  "HCG24",
  "HCG25",
  "HCG26",
  "HCG27",
  "HCHOLA4",
  "HCK",
  "HCL1",
  "HCL2",
  "HCL3",
  "HCLS1",
  "HCN1",
  "HCN2",
  "HCN3",
  "HCN4",
  "HCP5",
  "HCP5B",
  "HCP5P2",
  "HCP5P3",
  "HCP5P6",
  "HCP5P8",
  "HCP5P12",
  "HCP5P13",
  "HCP5P14",
  "HCP5P15",
  "HCRT",
  "HCRTR1",
  "HCRTR2",
  "HCST",
  "HCVS",
  "HDAC1",
  "HDAC1P1",
  "HDAC1P2",
  "HDAC2",
  "HDAC3",
  "HDAC4",
  "HDAC5",
  "HDAC6",
  "HDAC7",
  "HDAC8",
  "HDAC9",
  "HDAC10",
  "HDAC11",
  "HDAC11-AS1",
  "HDC",
  "HDDC2",
  "HDDC3",
  "HDGF",
  "HDGFL1",
  "HDGFP1",
  "HDHD2",
  "HDHD3",
  "HDLBP",
  "HDLCQ1",
  "HDX",
  "HEATR1",
  "HEATR3",
  "HEATR4",
  "HEATR5A",
  "HEATR5B",
  "HEATR6",
  "HEATR9",
  "HEBP1",
  "HEBP2",
  "HECA",
  "HECTD1",
  "HECTD2",
  "HECTD2-AS1",
  "HECTD3",
  "HECTD4",
  "HECW1",
  "HECW1-IT1",
  "HECW2",
  "HEG1",
  "HEIH",
  "HELB",
  "HELIGL1",
  "HELLPAR",
  "HELLS",
  "HELQ",
  "HELT",
  "HELZ",
  "HELZ2",
  "HEMGN",
  "HEMK1",
  "HENMT1",
  "HEP10",
  "HEPACAM",
  "HEPACAM2",
  "HEPH",
  "HEPHL1",
  "HEPN1",
  "HERC1",
  "HERC2",
  "HERC2P1",
  "HERC2P2",
  "HERC2P3",
  "HERC2P4",
  "HERC2P5",
  "HERC2P6",
  "HERC2P7",
  "HERC2P8",
  "HERC2P9",
  "HERC2P10",
  "HERC2P11",
  "HERC3",
  "HERC4",
  "HERC5",
  "HERC6",
  "HERPUD1",
  "HERPUD2",
  "HES1",
  "HES2",
  "HES3",
  "HES4",
  "HES5",
  "HES6",
  "HES7",
  "HESX1",
  "HEXA",
  "HEXA-AS1",
  "HEXB",
  "HEXDC",
  "HEXDC-IT1",
  "HEXIM1",
  "HEXIM2",
  "HEY1",
  "HEY2",
  "HEYL",
  "HFE",
  "HFE2",
  "HFM1",
  "HGD",
  "HGF",
  "HGFAC",
  "HGH1",
  "HGS",
  "HGSNAT",
  "HHAT",
  "HHATL",
  "HHATL-AS1",
  "HHEX",
  "HHIP",
  "HHIP-AS1",
  "HHIPL1",
  "HHIPL2",
  "HHLA1",
  "HHLA2",
  "HHLA3",
  "HIBADH",
  "HIBCH",
  "HIC1",
  "HIC2",
  "HID1",
  "HID1-AS1",
  "HIF1A",
  "HIF1A-AS1",
  "HIF1A-AS2",
  "HIF1AN",
  "HIF1AP1",
  "HIF3A",
  "HIGD1A",
  "HIGD1AP1",
  "HIGD1AP2",
  "HIGD1AP3",
  "HIGD1AP4",
  "HIGD1AP5",
  "HIGD1AP6",
  "HIGD1AP7",
  "HIGD1AP8",
  "HIGD1AP9",
  "HIGD1AP10",
  "HIGD1AP11",
  "HIGD1AP12",
  "HIGD1AP13",
  "HIGD1AP14",
  "HIGD1AP15",
  "HIGD1AP16",
  "HIGD1AP17",
  "HIGD1AP18",
  "HIGD1B",
  "HIGD1C",
  "HIGD2A",
  "HIGD2B",
  "HIKESHI",
  "HILPDA",
  "HILS1",
  "HINFP",
  "HINT1",
  "HINT1P1",
  "HINT1P2",
  "HINT2",
  "HINT2P1",
  "HINT3",
  "HIP1",
  "HIP1R",
  "HIPK1",
  "HIPK1-AS1",
  "HIPK2",
  "HIPK3",
  "HIPK4",
  "HIRA",
  "HIRAP1",
  "HIRIP3",
  "HIST1H1A",
  "HIST1H1B",
  "HIST1H1C",
  "HIST1H1D",
  "HIST1H1E",
  "HIST1H1PS1",
  "HIST1H1PS2",
  "HIST1H1T",
  "HIST1H2AA",
  "HIST1H2AB",
  "HIST1H2AC",
  "HIST1H2AD",
  "HIST1H2AE",
  "HIST1H2AG",
  "HIST1H2AH",
  "HIST1H2AI",
  "HIST1H2AJ",
  "HIST1H2AK",
  "HIST1H2AL",
  "HIST1H2AM",
  "HIST1H2APS1",
  "HIST1H2APS2",
  "HIST1H2APS3",
  "HIST1H2APS4",
  "HIST1H2APS5",
  "HIST1H2APS6",
  "HIST1H2BA",
  "HIST1H2BB",
  "HIST1H2BC",
  "HIST1H2BD",
  "HIST1H2BE",
  "HIST1H2BF",
  "HIST1H2BG",
  "HIST1H2BH",
  "HIST1H2BI",
  "HIST1H2BJ",
  "HIST1H2BK",
  "HIST1H2BL",
  "HIST1H2BM",
  "HIST1H2BN",
  "HIST1H2BO",
  "HIST1H2BPS1",
  "HIST1H2BPS2",
  "HIST1H2BPS3",
  "HIST1H3A",
  "HIST1H3B",
  "HIST1H3C",
  "HIST1H3D",
  "HIST1H3E",
  "HIST1H3F",
  "HIST1H3G",
  "HIST1H3H",
  "HIST1H3I",
  "HIST1H3J",
  "HIST1H3PS1",
  "HIST1H4A",
  "HIST1H4B",
  "HIST1H4C",
  "HIST1H4D",
  "HIST1H4E",
  "HIST1H4F",
  "HIST1H4G",
  "HIST1H4H",
  "HIST1H4I",
  "HIST1H4J",
  "HIST1H4K",
  "HIST1H4L",
  "HIST1H4PS1",
  "HIST2H2AA3",
  "HIST2H2AA4",
  "HIST2H2AB",
  "HIST2H2AC",
  "HIST2H2BA",
  "HIST2H2BB",
  "HIST2H2BC",
  "HIST2H2BD",
  "HIST2H2BE",
  "HIST2H2BF",
  "HIST2H3A",
  "HIST2H3B",
  "HIST2H3C",
  "HIST2H3D",
  "HIST2H3DP1",
  "HIST2H3PS2",
  "HIST2H4A",
  "HIST2H4B",
  "HIST3H2A",
  "HIST3H2BA",
  "HIST3H2BB",
  "HIST3H3",
  "HIST4H4",
  "HIVEP1",
  "HIVEP2",
  "HIVEP3",
  "HJURP",
  "HK1",
  "HK2",
  "HK2P1",
  "HK2P2",
  "HK3",
  "HKDC1",
  "HKR1",
  "HLA-A",
  "HLA-B",
  "HLA-C",
  "HLA-DMA",
  "HLA-DMB",
  "HLA-DOA",
  "HLA-DOB",
  "HLA-DPA1",
  "HLA-DPA2",
  "HLA-DPA3",
  "HLA-DPB1",
  "HLA-DPB2",
  "HLA-DQA1",
  "HLA-DQA2",
  "HLA-DQB1",
  "HLA-DQB1-AS1",
  "HLA-DQB2",
  "HLA-DQB3",
  "HLA-DRA",
  "HLA-DRB1",
  "HLA-DRB2",
  "HLA-DRB3",
  "HLA-DRB4",
  "HLA-DRB5",
  "HLA-DRB6",
  "HLA-DRB7",
  "HLA-DRB8",
  "HLA-DRB9",
  "HLA-E",
  "HLA-F",
  "HLA-F-AS1",
  "HLA-G",
  "HLA-H",
  "HLA-J",
  "HLA-K",
  "HLA-L",
  "HLA-N",
  "HLA-P",
  "HLA-S",
  "HLA-T",
  "HLA-U",
  "HLA-V",
  "HLA-W",
  "HLA-X",
  "HLA-Y",
  "HLA-Z",
  "HLCS",
  "HLCS-IT1",
  "HLF",
  "HLFP1",
  "HLTF",
  "HLTF-AS1",
  "HLX",
  "HLX-AS1",
  "HM13",
  "HM13-AS1",
  "HM13-IT1",
  "HMAA",
  "HMAB",
  "HMBOX1",
  "HMBOX1-IT1",
  "HMBOX1-OT1",
  "HMBS",
  "HMCES",
  "HMCN1",
  "HMCN2",
  "HMG1P",
  "HMG20A",
  "HMG20B",
  "HMGA1",
  "HMGA1P1",
  "HMGA1P2",
  "HMGA1P3",
  "HMGA1P4",
  "HMGA1P5",
  "HMGA1P6",
  "HMGA1P7",
  "HMGA1P8",
  "HMGA2",
  "HMGB1",
  "HMGB1P1",
  "HMGB1P3",
  "HMGB1P4",
  "HMGB1P5",
  "HMGB1P6",
  "HMGB1P7",
  "HMGB1P8",
  "HMGB1P9",
  "HMGB1P10",
  "HMGB1P11",
  "HMGB1P12",
  "HMGB1P13",
  "HMGB1P14",
  "HMGB1P15",
  "HMGB1P16",
  "HMGB1P17",
  "HMGB1P18",
  "HMGB1P19",
  "HMGB1P20",
  "HMGB1P21",
  "HMGB1P22",
  "HMGB1P23",
  "HMGB1P24",
  "HMGB1P25",
  "HMGB1P26",
  "HMGB1P27",
  "HMGB1P28",
  "HMGB1P29",
  "HMGB1P30",
  "HMGB1P31",
  "HMGB1P32",
  "HMGB1P33",
  "HMGB1P34",
  "HMGB1P35",
  "HMGB1P36",
  "HMGB1P37",
  "HMGB1P38",
  "HMGB1P39",
  "HMGB1P40",
  "HMGB1P41",
  "HMGB1P42",
  "HMGB1P43",
  "HMGB1P44",
  "HMGB1P45",
  "HMGB1P46",
  "HMGB1P47",
  "HMGB1P48",
  "HMGB1P49",
  "HMGB1P50",
  "HMGB1P51",
  "HMGB2",
  "HMGB2P1",
  "HMGB3",
  "HMGB3P1",
  "HMGB3P2",
  "HMGB3P3",
  "HMGB3P4",
  "HMGB3P5",
  "HMGB3P6",
  "HMGB3P7",
  "HMGB3P8",
  "HMGB3P9",
  "HMGB3P10",
  "HMGB3P11",
  "HMGB3P12",
  "HMGB3P13",
  "HMGB3P14",
  "HMGB3P15",
  "HMGB3P16",
  "HMGB3P17",
  "HMGB3P18",
  "HMGB3P19",
  "HMGB3P20",
  "HMGB3P21",
  "HMGB3P22",
  "HMGB3P23",
  "HMGB3P24",
  "HMGB3P25",
  "HMGB3P26",
  "HMGB3P27",
  "HMGB3P28",
  "HMGB3P29",
  "HMGB3P30",
  "HMGB3P31",
  "HMGB3P32",
  "HMGB4",
  "HMGCL",
  "HMGCLL1",
  "HMGCR",
  "HMGCS1",
  "HMGCS2",
  "HMGN1",
  "HMGN1P1",
  "HMGN1P2",
  "HMGN1P3",
  "HMGN1P4",
  "HMGN1P5",
  "HMGN1P6",
  "HMGN1P7",
  "HMGN1P8",
  "HMGN1P9",
  "HMGN1P10",
  "HMGN1P11",
  "HMGN1P12",
  "HMGN1P13",
  "HMGN1P14",
  "HMGN1P15",
  "HMGN1P16",
  "HMGN1P17",
  "HMGN1P18",
  "HMGN1P19",
  "HMGN1P20",
  "HMGN1P21",
  "HMGN1P22",
  "HMGN1P23",
  "HMGN1P24",
  "HMGN1P25",
  "HMGN1P26",
  "HMGN1P27",
  "HMGN1P28",
  "HMGN1P29",
  "HMGN1P30",
  "HMGN1P31",
  "HMGN1P32",
  "HMGN1P33",
  "HMGN1P34",
  "HMGN1P35",
  "HMGN1P36",
  "HMGN1P37",
  "HMGN1P38",
  "HMGN2",
  "HMGN2P1",
  "HMGN2P2",
  "HMGN2P3",
  "HMGN2P4",
  "HMGN2P5",
  "HMGN2P6",
  "HMGN2P7",
  "HMGN2P8",
  "HMGN2P9",
  "HMGN2P10",
  "HMGN2P11",
  "HMGN2P12",
  "HMGN2P13",
  "HMGN2P14",
  "HMGN2P15",
  "HMGN2P16",
  "HMGN2P17",
  "HMGN2P18",
  "HMGN2P19",
  "HMGN2P20",
  "HMGN2P21",
  "HMGN2P22",
  "HMGN2P23",
  "HMGN2P24",
  "HMGN2P25",
  "HMGN2P26",
  "HMGN2P27",
  "HMGN2P28",
  "HMGN2P29",
  "HMGN2P30",
  "HMGN2P31",
  "HMGN2P32",
  "HMGN2P33",
  "HMGN2P34",
  "HMGN2P35",
  "HMGN2P36",
  "HMGN2P37",
  "HMGN2P38",
  "HMGN2P39",
  "HMGN2P40",
  "HMGN2P41",
  "HMGN2P42",
  "HMGN2P43",
  "HMGN2P44",
  "HMGN2P45",
  "HMGN2P46",
  "HMGN2P47",
  "HMGN3",
  "HMGN3-AS1",
  "HMGN3P1",
  "HMGN4",
  "HMGN5",
  "HMGXB3",
  "HMGXB4",
  "HMHB1",
  "HMI",
  "HMMR",
  "HMMR-AS1",
  "HMOX1",
  "HMOX2",
  "HMS1",
  "HMSD",
  "HMX1",
  "HMX2",
  "HMX3",
  "HN1",
  "HN1L",
  "HNB1",
  "HNF1A",
  "HNF1A-AS1",
  "HNF1B",
  "HNF4A",
  "HNF4A-AS1",
  "HNF4G",
  "HNF4GP1",
  "HNMT",
  "HNRNPA0",
  "HNRNPA1",
  "HNRNPA1L2",
  "HNRNPA1P1",
  "HNRNPA1P2",
  "HNRNPA1P3",
  "HNRNPA1P4",
  "HNRNPA1P5",
  "HNRNPA1P6",
  "HNRNPA1P7",
  "HNRNPA1P8",
  "HNRNPA1P9",
  "HNRNPA1P10",
  "HNRNPA1P11",
  "HNRNPA1P12",
  "HNRNPA1P13",
  "HNRNPA1P14",
  "HNRNPA1P15",
  "HNRNPA1P16",
  "HNRNPA1P17",
  "HNRNPA1P18",
  "HNRNPA1P19",
  "HNRNPA1P20",
  "HNRNPA1P21",
  "HNRNPA1P22",
  "HNRNPA1P23",
  "HNRNPA1P24",
  "HNRNPA1P25",
  "HNRNPA1P26",
  "HNRNPA1P27",
  "HNRNPA1P28",
  "HNRNPA1P29",
  "HNRNPA1P30",
  "HNRNPA1P31",
  "HNRNPA1P32",
  "HNRNPA1P33",
  "HNRNPA1P34",
  "HNRNPA1P35",
  "HNRNPA1P36",
  "HNRNPA1P37",
  "HNRNPA1P38",
  "HNRNPA1P39",
  "HNRNPA1P40",
  "HNRNPA1P41",
  "HNRNPA1P42",
  "HNRNPA1P43",
  "HNRNPA1P44",
  "HNRNPA1P45",
  "HNRNPA1P46",
  "HNRNPA1P47",
  "HNRNPA1P48",
  "HNRNPA1P49",
  "HNRNPA1P50",
  "HNRNPA1P51",
  "HNRNPA1P52",
  "HNRNPA1P53",
  "HNRNPA1P54",
  "HNRNPA1P55",
  "HNRNPA1P56",
  "HNRNPA1P57",
  "HNRNPA1P58",
  "HNRNPA1P59",
  "HNRNPA1P60",
  "HNRNPA1P61",
  "HNRNPA1P62",
  "HNRNPA1P63",
  "HNRNPA1P64",
  "HNRNPA1P65",
  "HNRNPA1P66",
  "HNRNPA1P67",
  "HNRNPA1P68",
  "HNRNPA1P69",
  "HNRNPA1P70",
  "HNRNPA1P71",
  "HNRNPA1P72",
  "HNRNPA1P73",
  "HNRNPA1P74",
  "HNRNPA1P75",
  "HNRNPA1P76",
  "HNRNPA1P77",
  "HNRNPA2B1",
  "HNRNPA3",
  "HNRNPA3P1",
  "HNRNPA3P2",
  "HNRNPA3P3",
  "HNRNPA3P4",
  "HNRNPA3P5",
  "HNRNPA3P6",
  "HNRNPA3P7",
  "HNRNPA3P8",
  "HNRNPA3P9",
  "HNRNPA3P10",
  "HNRNPA3P11",
  "HNRNPA3P12",
  "HNRNPA3P13",
  "HNRNPA3P14",
  "HNRNPA3P15",
  "HNRNPA3P16",
  "HNRNPAB",
  "HNRNPABP1",
  "HNRNPC",
  "HNRNPCL1",
  "HNRNPCL2",
  "HNRNPCL3",
  "HNRNPCL4",
  "HNRNPCP1",
  "HNRNPCP2",
  "HNRNPCP3",
  "HNRNPCP4",
  "HNRNPCP6",
  "HNRNPCP7",
  "HNRNPCP8",
  "HNRNPCP9",
  "HNRNPCP10",
  "HNRNPD",
  "HNRNPDL",
  "HNRNPDLP1",
  "HNRNPDLP2",
  "HNRNPDLP3",
  "HNRNPDLP4",
  "HNRNPDLP5",
  "HNRNPDP1",
  "HNRNPDP2",
  "HNRNPF",
  "HNRNPFP1",
  "HNRNPH1",
  "HNRNPH1P1",
  "HNRNPH1P2",
  "HNRNPH1P3",
  "HNRNPH2",
  "HNRNPH3",
  "HNRNPH3P1",
  "HNRNPK",
  "HNRNPKP1",
  "HNRNPKP2",
  "HNRNPKP3",
  "HNRNPKP4",
  "HNRNPKP5",
  "HNRNPL",
  "HNRNPLL",
  "HNRNPLP1",
  "HNRNPLP2",
  "HNRNPM",
  "HNRNPMP1",
  "HNRNPMP2",
  "HNRNPR",
  "HNRNPRP1",
  "HNRNPRP2",
  "HNRNPRP3",
  "HNRNPU",
  "HNRNPUL1",
  "HNRNPUL2",
  "HNRNPUL2-BSCL2",
  "HNRNPUP1",
  "HOAC",
  "HOGA1",
  "HOMER1",
  "HOMER2",
  "HOMER2P1",
  "HOMER2P2",
  "HOMER3",
  "HOMEZ",
  "HOOK1",
  "HOOK2",
  "HOOK3",
  "HOPX",
  "HORMAD1",
  "HORMAD2",
  "HORMAD2-AS1",
  "HOTAIR",
  "HOTAIRM1",
  "HOTTIP",
  "HOXA-AS2",
  "HOXA-AS3",
  "HOXA1",
  "HOXA2",
  "HOXA3",
  "HOXA4",
  "HOXA5",
  "HOXA6",
  "HOXA7",
  "HOXA9",
  "HOXA10",
  "HOXA10-AS",
  "HOXA11",
  "HOXA11-AS",
  "HOXA13",
  "HOXA@",
  "HOXB-AS1",
  "HOXB-AS2",
  "HOXB-AS3",
  "HOXB-AS4",
  "HOXB1",
  "HOXB2",
  "HOXB3",
  "HOXB4",
  "HOXB5",
  "HOXB6",
  "HOXB7",
  "HOXB8",
  "HOXB9",
  "HOXB13",
  "HOXB@",
  "HOXC-AS1",
  "HOXC-AS2",
  "HOXC-AS3",
  "HOXC4",
  "HOXC5",
  "HOXC6",
  "HOXC8",
  "HOXC9",
  "HOXC10",
  "HOXC11",
  "HOXC12",
  "HOXC13",
  "HOXC13-AS",
  "HOXC@",
  "HOXD-AS2",
  "HOXD1",
  "HOXD3",
  "HOXD4",
  "HOXD8",
  "HOXD9",
  "HOXD10",
  "HOXD11",
  "HOXD12",
  "HOXD13",
  "HOXD@",
  "HP",
  "HP1BP3",
  "HPC1",
  "HPCA",
  "HPCAL1",
  "HPCAL4",
  "HPCX",
  "HPD",
  "HPDL",
  "HPE1",
  "HPF1",
  "HPFH2",
  "HPGD",
  "HPGDS",
  "HPLH1",
  "HPN",
  "HPN-AS1",
  "HPP1",
  "HPR",
  "HPRT1",
  "HPRT1P1",
  "HPRT1P2",
  "HPRT1P3",
  "HPRT2",
  "HPRTP1",
  "HPS1",
  "HPS3",
  "HPS4",
  "HPS5",
  "HPS6",
  "HPSE",
  "HPSE2",
  "HPT",
  "HPV6AI1",
  "HPV18I1",
  "HPV18I2",
  "HPVC1",
  "HPX",
  "HPYR1",
  "HR",
  "HRAS",
  "HRASLS",
  "HRASLS2",
  "HRASLS5",
  "HRC",
  "HRCT1",
  "HRES1",
  "HRG",
  "HRH1",
  "HRH2",
  "HRH3",
  "HRH4",
  "HRK",
  "HRNR",
  "HS1BP3",
  "HS1BP3-IT1",
  "HS2ST1",
  "HS3ST1",
  "HS3ST2",
  "HS3ST3A1",
  "HS3ST3B1",
  "HS3ST4",
  "HS3ST5",
  "HS3ST6",
  "HS6ST1",
  "HS6ST1P1",
  "HS6ST2",
  "HS6ST2-AS1",
  "HS6ST3",
  "HSBP1",
  "HSBP1L1",
  "HSBP1P1",
  "HSBP1P2",
  "HSCB",
  "HSD3B1",
  "HSD3B2",
  "HSD3B7",
  "HSD3BP1",
  "HSD3BP2",
  "HSD3BP3",
  "HSD3BP4",
  "HSD3BP5",
  "HSD11B1",
  "HSD11B1L",
  "HSD11B2",
  "HSD17B1",
  "HSD17B1P1",
  "HSD17B2",
  "HSD17B3",
  "HSD17B4",
  "HSD17B6",
  "HSD17B7",
  "HSD17B7P1",
  "HSD17B7P2",
  "HSD17B8",
  "HSD17B10",
  "HSD17B11",
  "HSD17B12",
  "HSD17B13",
  "HSD17B14",
  "HSDL1",
  "HSDL2",
  "HSF1",
  "HSF2",
  "HSF2BP",
  "HSF4",
  "HSF5",
  "HSFX1",
  "HSFX2",
  "HSFY1",
  "HSFY1P1",
  "HSFY2",
  "HSFY3P",
  "HSFY4P",
  "HSFY5P",
  "HSFY6P",
  "HSFY7P",
  "HSFY8P",
  "HSH2D",
  "HSP90AA1",
  "HSP90AA2P",
  "HSP90AA3P",
  "HSP90AA4P",
  "HSP90AA5P",
  "HSP90AA6P",
  "HSP90AB1",
  "HSP90AB2P",
  "HSP90AB3P",
  "HSP90AB4P",
  "HSP90AB5P",
  "HSP90AB6P",
  "HSP90AB7P",
  "HSP90B1",
  "HSP90B2P",
  "HSP90B3P",
  "HSPA1A",
  "HSPA1B",
  "HSPA1L",
  "HSPA2",
  "HSPA3",
  "HSPA4",
  "HSPA4L",
  "HSPA5",
  "HSPA6",
  "HSPA7",
  "HSPA8",
  "HSPA8P1",
  "HSPA8P2",
  "HSPA8P3",
  "HSPA8P4",
  "HSPA8P5",
  "HSPA8P6",
  "HSPA8P7",
  "HSPA8P8",
  "HSPA8P9",
  "HSPA8P10",
  "HSPA8P11",
  "HSPA8P12",
  "HSPA8P13",
  "HSPA8P14",
  "HSPA8P15",
  "HSPA8P16",
  "HSPA8P17",
  "HSPA8P18",
  "HSPA8P19",
  "HSPA8P20",
  "HSPA9",
  "HSPA9A",
  "HSPA9P1",
  "HSPA9P2",
  "HSPA12A",
  "HSPA12B",
  "HSPA13",
  "HSPA14",
  "HSPB1",
  "HSPB1P1",
  "HSPB1P2",
  "HSPB2",
  "HSPB2-C11orf52",
  "HSPB3",
  "HSPB6",
  "HSPB7",
  "HSPB8",
  "HSPB9",
  "HSPB11",
  "HSPBAP1",
  "HSPBL1",
  "HSPBP1",
  "HSPD1",
  "HSPD1P1",
  "HSPD1P2",
  "HSPD1P3",
  "HSPD1P4",
  "HSPD1P5",
  "HSPD1P6",
  "HSPD1P7",
  "HSPD1P8",
  "HSPD1P9",
  "HSPD1P10",
  "HSPD1P11",
  "HSPD1P12",
  "HSPD1P13",
  "HSPD1P14",
  "HSPD1P15",
  "HSPD1P16",
  "HSPD1P17",
  "HSPD1P18",
  "HSPD1P19",
  "HSPD1P20",
  "HSPD1P21",
  "HSPD1P22",
  "HSPE1",
  "HSPE1-MOB4",
  "HSPE1P1",
  "HSPE1P2",
  "HSPE1P3",
  "HSPE1P4",
  "HSPE1P5",
  "HSPE1P6",
  "HSPE1P7",
  "HSPE1P8",
  "HSPE1P9",
  "HSPE1P10",
  "HSPE1P11",
  "HSPE1P12",
  "HSPE1P13",
  "HSPE1P14",
  "HSPE1P15",
  "HSPE1P16",
  "HSPE1P17",
  "HSPE1P18",
  "HSPE1P19",
  "HSPE1P20",
  "HSPE1P21",
  "HSPE1P22",
  "HSPE1P23",
  "HSPE1P24",
  "HSPE1P25",
  "HSPE1P26",
  "HSPE1P27",
  "HSPE1P28",
  "HSPG2",
  "HSPH1",
  "HSR1",
  "HTATIP2",
  "HTATSF1",
  "HTATSF1P1",
  "HTATSF1P2",
  "HTC1",
  "HTC2",
  "HTL",
  "HTN1",
  "HTN3",
  "HTOR",
  "HTR1A",
  "HTR1B",
  "HTR1D",
  "HTR1DP1",
  "HTR1E",
  "HTR1F",
  "HTR2A",
  "HTR2A-AS1",
  "HTR2B",
  "HTR2C",
  "HTR2C-IT1",
  "HTR3A",
  "HTR3B",
  "HTR3C",
  "HTR3D",
  "HTR3E",
  "HTR3E-AS1",
  "HTR4",
  "HTR4-IT1",
  "HTR5A",
  "HTR5A-AS1",
  "HTR5BP",
  "HTR6",
  "HTR7",
  "HTR7P1",
  "HTRA1",
  "HTRA2",
  "HTRA3",
  "HTRA4",
  "HTT",
  "HTT-AS",
  "HULC",
  "HUNK",
  "HUNK-AS1",
  "HUS1",
  "HUS1B",
  "HUWE1",
  "HV1S",
  "HVBS1",
  "HVBS4",
  "HVBS6",
  "HVBS7",
  "HVBS8",
  "HVCN1",
  "HYAL1",
  "HYAL2",
  "HYAL3",
  "HYAL4",
  "HYALP1",
  "HYD2",
  "HYDIN",
  "HYDIN2",
  "HYI",
  "HYI-AS1",
  "HYKK",
  "HYLS1",
  "HYMAI",
  "HYOU1",
  "HYPK",
  "HYPM",
  "IAH1",
  "IAPP",
  "IARS",
  "IARS2",
  "IARS2P1",
  "IBA57",
  "IBA57-AS1",
  "IBD2",
  "IBD3",
  "IBD4",
  "IBD5",
  "IBD6",
  "IBD7",
  "IBD8",
  "IBD9",
  "IBGC1",
  "IBSP",
  "IBTK",
  "IBTKP1",
  "IC1",
  "ICA1",
  "ICA1L",
  "ICAM1",
  "ICAM2",
  "ICAM3",
  "ICAM4",
  "ICAM5",
  "ICE1",
  "ICE2",
  "ICE2P1",
  "ICE2P2",
  "ICK",
  "ICMT",
  "ICOS",
  "ICOSLG",
  "ICR1",
  "ICR3",
  "ICR4",
  "ICR5",
  "ICS1",
  "ID1",
  "ID2",
  "ID2-AS1",
  "ID2B",
  "ID3",
  "ID4",
  "IDDM3",
  "IDDM4",
  "IDDM6",
  "IDDM7",
  "IDDM8",
  "IDDM9",
  "IDDM11",
  "IDDM13",
  "IDDM14",
  "IDDM15",
  "IDDM16",
  "IDDM17",
  "IDDM18",
  "IDE",
  "IDH1",
  "IDH1-AS1",
  "IDH2",
  "IDH3A",
  "IDH3B",
  "IDH3G",
  "IDI1",
  "IDI2",
  "IDI2-AS1",
  "IDNK",
  "IDO1",
  "IDO2",
  "IDS",
  "IDSP1",
  "IDUA",
  "IER2",
  "IER3",
  "IER3IP1",
  "IER5",
  "IER5L",
  "IFFO1",
  "IFFO2",
  "IFI6",
  "IFI16",
  "IFI27",
  "IFI27L1",
  "IFI27L2",
  "IFI30",
  "IFI35",
  "IFI44",
  "IFI44L",
  "IFIH1",
  "IFIT1",
  "IFIT1B",
  "IFIT1P1",
  "IFIT2",
  "IFIT3",
  "IFIT5",
  "IFIT6P",
  "IFITM1",
  "IFITM2",
  "IFITM3",
  "IFITM4P",
  "IFITM5",
  "IFITM8P",
  "IFITM9P",
  "IFITM10",
  "IFN1@",
  "IFNA1",
  "IFNA2",
  "IFNA4",
  "IFNA5",
  "IFNA6",
  "IFNA7",
  "IFNA8",
  "IFNA10",
  "IFNA11P",
  "IFNA12P",
  "IFNA13",
  "IFNA14",
  "IFNA16",
  "IFNA17",
  "IFNA20P",
  "IFNA21",
  "IFNA22P",
  "IFNAR1",
  "IFNAR2",
  "IFNB1",
  "IFNB3",
  "IFNBR",
  "IFNE",
  "IFNG",
  "IFNG-AS1",
  "IFNGR1",
  "IFNGR2",
  "IFNK",
  "IFNL1",
  "IFNL2",
  "IFNL3",
  "IFNL3P1",
  "IFNL4",
  "IFNL4P1",
  "IFNLR1",
  "IFNNP1",
  "IFNP23",
  "IFNP24",
  "IFNR",
  "IFNW1",
  "IFNWP2",
  "IFNWP4",
  "IFNWP5",
  "IFNWP9",
  "IFNWP15",
  "IFNWP18",
  "IFNWP19",
  "IFRD1",
  "IFRD2",
  "IFT20",
  "IFT22",
  "IFT27",
  "IFT43",
  "IFT46",
  "IFT52",
  "IFT57",
  "IFT74",
  "IFT74-AS1",
  "IFT80",
  "IFT81",
  "IFT88",
  "IFT122",
  "IFT140",
  "IFT172",
  "IGAD1",
  "IGBP1",
  "IGBP1-AS1",
  "IGBP1-AS2",
  "IGBP1P1",
  "IGBP1P2",
  "IGBP1P3",
  "IGBP1P4",
  "IGBP1P5",
  "IGDCC3",
  "IGDCC4",
  "IGES",
  "IGF1",
  "IGF1R",
  "IGF2",
  "IGF2-AS",
  "IGF2BP1",
  "IGF2BP2",
  "IGF2BP2-AS1",
  "IGF2BP3",
  "IGF2R",
  "IGFALS",
  "IGFBP1",
  "IGFBP2",
  "IGFBP3",
  "IGFBP4",
  "IGFBP5",
  "IGFBP6",
  "IGFBP7",
  "IGFBP7-AS1",
  "IGFBPL1",
  "IGFL1",
  "IGFL1P1",
  "IGFL1P2",
  "IGFL2",
  "IGFL3",
  "IGFL4",
  "IGFLR1",
  "IGFN1",
  "IGH",
  "IGHA1",
  "IGHA2",
  "IGHD",
  "IGHD1-1",
  "IGHD1-7",
  "IGHD1-14",
  "IGHD1-20",
  "IGHD1-26",
  "IGHD1OR15-1A",
  "IGHD1OR15-1B",
  "IGHD2-2",
  "IGHD2-8",
  "IGHD2-15",
  "IGHD2-21",
  "IGHD2OR15-2A",
  "IGHD2OR15-2B",
  "IGHD3-3",
  "IGHD3-9",
  "IGHD3-10",
  "IGHD3-16",
  "IGHD3-22",
  "IGHD3OR15-3A",
  "IGHD3OR15-3B",
  "IGHD4-4",
  "IGHD4-11",
  "IGHD4-17",
  "IGHD4-23",
  "IGHD4OR15-4A",
  "IGHD4OR15-4B",
  "IGHD5-5",
  "IGHD5-12",
  "IGHD5-18",
  "IGHD5-24",
  "IGHD5OR15-5A",
  "IGHD5OR15-5B",
  "IGHD6-6",
  "IGHD6-13",
  "IGHD6-19",
  "IGHD6-25",
  "IGHD7-27",
  "IGHD@",
  "IGHDOR15@",
  "IGHDY2",
  "IGHE",
  "IGHEP1",
  "IGHEP2",
  "IGHG1",
  "IGHG2",
  "IGHG3",
  "IGHG4",
  "IGHGP",
  "IGHJ1",
  "IGHJ1P",
  "IGHJ2",
  "IGHJ2P",
  "IGHJ3",
  "IGHJ3P",
  "IGHJ4",
  "IGHJ5",
  "IGHJ6",
  "IGHJ@",
  "IGHM",
  "IGHMBP2",
  "IGHR",
  "IGHV1-2",
  "IGHV1-3",
  "IGHV1-8",
  "IGHV1-12",
  "IGHV1-14",
  "IGHV1-17",
  "IGHV1-18",
  "IGHV1-24",
  "IGHV1-38-4",
  "IGHV1-45",
  "IGHV1-46",
  "IGHV1-58",
  "IGHV1-67",
  "IGHV1-68",
  "IGHV1-69",
  "IGHV1-69-2",
  "IGHV1-69D",
  "IGHV1OR15-1",
  "IGHV1OR15-2",
  "IGHV1OR15-3",
  "IGHV1OR15-4",
  "IGHV1OR15-5",
  "IGHV1OR15-6",
  "IGHV1OR15-9",
  "IGHV1OR16-1",
  "IGHV1OR16-2",
  "IGHV1OR16-3",
  "IGHV1OR16-4",
  "IGHV1OR21-1",
  "IGHV2-5",
  "IGHV2-10",
  "IGHV2-26",
  "IGHV2-70",
  "IGHV2-70D",
  "IGHV2@",
  "IGHV2OR16-5",
  "IGHV3-6",
  "IGHV3-7",
  "IGHV3-9",
  "IGHV3-11",
  "IGHV3-13",
  "IGHV3-15",
  "IGHV3-16",
  "IGHV3-19",
  "IGHV3-20",
  "IGHV3-21",
  "IGHV3-22",
  "IGHV3-23",
  "IGHV3-25",
  "IGHV3-29",
  "IGHV3-30",
  "IGHV3-30-2",
  "IGHV3-30-3",
  "IGHV3-30-5",
  "IGHV3-32",
  "IGHV3-33",
  "IGHV3-33-2",
  "IGHV3-35",
  "IGHV3-36",
  "IGHV3-37",
  "IGHV3-38",
  "IGHV3-38-3",
  "IGHV3-41",
  "IGHV3-42",
  "IGHV3-43",
  "IGHV3-43D",
  "IGHV3-47",
  "IGHV3-48",
  "IGHV3-49",
  "IGHV3-50",
  "IGHV3-52",
  "IGHV3-53",
  "IGHV3-54",
  "IGHV3-57",
  "IGHV3-60",
  "IGHV3-62",
  "IGHV3-63",
  "IGHV3-64",
  "IGHV3-64D",
  "IGHV3-65",
  "IGHV3-66",
  "IGHV3-69-1",
  "IGHV3-71",
  "IGHV3-72",
  "IGHV3-73",
  "IGHV3-74",
  "IGHV3-75",
  "IGHV3-76",
  "IGHV3-79",
  "IGHV3@",
  "IGHV3OR15-7",
  "IGHV3OR16-6",
  "IGHV3OR16-7",
  "IGHV3OR16-8",
  "IGHV3OR16-9",
  "IGHV3OR16-10",
  "IGHV3OR16-11",
  "IGHV3OR16-12",
  "IGHV3OR16-13",
  "IGHV3OR16-14",
  "IGHV3OR16-15",
  "IGHV3OR16-16",
  "IGHV4-4",
  "IGHV4-28",
  "IGHV4-30-1",
  "IGHV4-30-2",
  "IGHV4-30-4",
  "IGHV4-31",
  "IGHV4-34",
  "IGHV4-38-2",
  "IGHV4-39",
  "IGHV4-55",
  "IGHV4-59",
  "IGHV4-61",
  "IGHV4-80",
  "IGHV4OR15-8",
  "IGHV5-10-1",
  "IGHV5-51",
  "IGHV5-78",
  "IGHV6-1",
  "IGHV7-4-1",
  "IGHV7-27",
  "IGHV7-34-1",
  "IGHV7-40",
  "IGHV7-56",
  "IGHV7-77",
  "IGHV7-81",
  "IGHV@",
  "IGHVII-1-1",
  "IGHVII-15-1",
  "IGHVII-20-1",
  "IGHVII-22-1",
  "IGHVII-26-2",
  "IGHVII-28-1",
  "IGHVII-30-1",
  "IGHVII-31-1",
  "IGHVII-33-1",
  "IGHVII-40-1",
  "IGHVII-43-1",
  "IGHVII-44-2",
  "IGHVII-46-1",
  "IGHVII-49-1",
  "IGHVII-51-2",
  "IGHVII-53-1",
  "IGHVII-60-1",
  "IGHVII-62-1",
  "IGHVII-65-1",
  "IGHVII-67-1",
  "IGHVII-74-1",
  "IGHVII-78-1",
  "IGHVIII-2-1",
  "IGHVIII-5-1",
  "IGHVIII-5-2",
  "IGHVIII-11-1",
  "IGHVIII-13-1",
  "IGHVIII-16-1",
  "IGHVIII-22-2",
  "IGHVIII-25-1",
  "IGHVIII-26-1",
  "IGHVIII-38-1",
  "IGHVIII-44",
  "IGHVIII-47-1",
  "IGHVIII-51-1",
  "IGHVIII-67-2",
  "IGHVIII-67-3",
  "IGHVIII-67-4",
  "IGHVIII-76-1",
  "IGHVIII-82",
  "IGHVIV-44-1",
  "IGHVOR15@",
  "IGHVOR16@",
  "IGIP",
  "IGJP1",
  "IGK",
  "IGKC",
  "IGKDEL",
  "IGKJ1",
  "IGKJ2",
  "IGKJ3",
  "IGKJ4",
  "IGKJ5",
  "IGKJ@",
  "IGKV1-5",
  "IGKV1-6",
  "IGKV1-8",
  "IGKV1-9",
  "IGKV1-12",
  "IGKV1-13",
  "IGKV1-16",
  "IGKV1-17",
  "IGKV1-22",
  "IGKV1-27",
  "IGKV1-32",
  "IGKV1-33",
  "IGKV1-35",
  "IGKV1-37",
  "IGKV1-39",
  "IGKV1D-8",
  "IGKV1D-12",
  "IGKV1D-13",
  "IGKV1D-16",
  "IGKV1D-17",
  "IGKV1D-22",
  "IGKV1D-27",
  "IGKV1D-32",
  "IGKV1D-33",
  "IGKV1D-35",
  "IGKV1D-37",
  "IGKV1D-39",
  "IGKV1D-42",
  "IGKV1D-43",
  "IGKV1OR-2",
  "IGKV1OR-3",
  "IGKV1OR-4",
  "IGKV1OR1-1",
  "IGKV1OR2-0",
  "IGKV1OR2-1",
  "IGKV1OR2-2",
  "IGKV1OR2-3",
  "IGKV1OR2-6",
  "IGKV1OR2-9",
  "IGKV1OR2-11",
  "IGKV1OR2-108",
  "IGKV1OR2-118",
  "IGKV1OR9-1",
  "IGKV1OR9-2",
  "IGKV1OR10-1",
  "IGKV1OR15-118",
  "IGKV1OR22-1",
  "IGKV1OR22-5",
  "IGKV1ORY-1",
  "IGKV2-4",
  "IGKV2-10",
  "IGKV2-14",
  "IGKV2-18",
  "IGKV2-19",
  "IGKV2-23",
  "IGKV2-24",
  "IGKV2-26",
  "IGKV2-28",
  "IGKV2-29",
  "IGKV2-30",
  "IGKV2-36",
  "IGKV2-38",
  "IGKV2-40",
  "IGKV2D-10",
  "IGKV2D-14",
  "IGKV2D-18",
  "IGKV2D-19",
  "IGKV2D-23",
  "IGKV2D-24",
  "IGKV2D-26",
  "IGKV2D-28",
  "IGKV2D-29",
  "IGKV2D-30",
  "IGKV2D-36",
  "IGKV2D-38",
  "IGKV2D-40",
  "IGKV2OR2-1",
  "IGKV2OR2-2",
  "IGKV2OR2-4",
  "IGKV2OR2-7",
  "IGKV2OR2-7D",
  "IGKV2OR2-8",
  "IGKV2OR2-10",
  "IGKV2OR22-3",
  "IGKV2OR22-4",
  "IGKV3-7",
  "IGKV3-11",
  "IGKV3-15",
  "IGKV3-20",
  "IGKV3-25",
  "IGKV3-31",
  "IGKV3-34",
  "IGKV3D-7",
  "IGKV3D-11",
  "IGKV3D-15",
  "IGKV3D-20",
  "IGKV3D-25",
  "IGKV3D-31",
  "IGKV3D-34",
  "IGKV3OR2-5",
  "IGKV3OR2-268",
  "IGKV3OR22-2",
  "IGKV4-1",
  "IGKV5-2",
  "IGKV6-21",
  "IGKV6D-21",
  "IGKV6D-41",
  "IGKV7-3",
  "IGKV@",
  "IGKVOR2@",
  "IGKVP@",
  "IGL",
  "IGLC1",
  "IGLC2",
  "IGLC3",
  "IGLC4",
  "IGLC5",
  "IGLC6",
  "IGLC7",
  "IGLC@",
  "IGLCOR22-1",
  "IGLCOR22-2",
  "IGLJ1",
  "IGLJ2",
  "IGLJ3",
  "IGLJ4",
  "IGLJ5",
  "IGLJ6",
  "IGLJ7",
  "IGLJ@",
  "IGLJCOR18",
  "IGLL1",
  "IGLL2P",
  "IGLL3P",
  "IGLL4P",
  "IGLL5",
  "IGLON5",
  "IGLP1",
  "IGLP2",
  "IGLV1-36",
  "IGLV1-40",
  "IGLV1-41",
  "IGLV1-44",
  "IGLV1-47",
  "IGLV1-50",
  "IGLV1-51",
  "IGLV1-62",
  "IGLV2-5",
  "IGLV2-8",
  "IGLV2-11",
  "IGLV2-14",
  "IGLV2-18",
  "IGLV2-23",
  "IGLV2-28",
  "IGLV2-33",
  "IGLV2-34",
  "IGLV3-1",
  "IGLV3-2",
  "IGLV3-4",
  "IGLV3-6",
  "IGLV3-7",
  "IGLV3-9",
  "IGLV3-10",
  "IGLV3-12",
  "IGLV3-13",
  "IGLV3-15",
  "IGLV3-16",
  "IGLV3-17",
  "IGLV3-19",
  "IGLV3-21",
  "IGLV3-22",
  "IGLV3-24",
  "IGLV3-25",
  "IGLV3-26",
  "IGLV3-27",
  "IGLV3-29",
  "IGLV3-30",
  "IGLV3-31",
  "IGLV3-32",
  "IGLV4-3",
  "IGLV4-60",
  "IGLV4-69",
  "IGLV5-37",
  "IGLV5-39",
  "IGLV5-45",
  "IGLV5-48",
  "IGLV5-52",
  "IGLV6-57",
  "IGLV7-35",
  "IGLV7-43",
  "IGLV7-46",
  "IGLV8-61",
  "IGLV8OR8-1",
  "IGLV9-49",
  "IGLV10-54",
  "IGLV10-67",
  "IGLV11-55",
  "IGLV@",
  "IGLVI-20",
  "IGLVI-38",
  "IGLVI-42",
  "IGLVI-56",
  "IGLVI-63",
  "IGLVI-68",
  "IGLVI-70",
  "IGLVIV-53",
  "IGLVIV-59",
  "IGLVIV-64",
  "IGLVIV-65",
  "IGLVIV-66-1",
  "IGLVIVOR22-1",
  "IGLVIVOR22-2",
  "IGLVV-58",
  "IGLVV-66",
  "IGLVVI-22-1",
  "IGLVVI-25-1",
  "IGLVVII-41-1",
  "IGO1",
  "IGSF1",
  "IGSF3",
  "IGSF5",
  "IGSF6",
  "IGSF8",
  "IGSF9",
  "IGSF9B",
  "IGSF10",
  "IGSF11",
  "IGSF11-AS1",
  "IGSF21",
  "IGSF22",
  "IGSF23",
  "IHG1",
  "IHH",
  "IK",
  "IKBIP",
  "IKBKAP",
  "IKBKAP-IT1",
  "IKBKB",
  "IKBKE",
  "IKBKG",
  "IKBKGP1",
  "IKZF1",
  "IKZF2",
  "IKZF3",
  "IKZF4",
  "IKZF5",
  "IL1A",
  "IL1B",
  "IL1F10",
  "IL1R1",
  "IL1R2",
  "IL1RAP",
  "IL1RAPL1",
  "IL1RAPL2",
  "IL1RL1",
  "IL1RL2",
  "IL1RN",
  "IL2",
  "IL2RA",
  "IL2RB",
  "IL2RG",
  "IL3",
  "IL3RA",
  "IL4",
  "IL4I1",
  "IL4R",
  "IL5",
  "IL5RA",
  "IL6",
  "IL6R",
  "IL6RP1",
  "IL6ST",
  "IL6STP1",
  "IL7",
  "IL7R",
  "IL9",
  "IL9R",
  "IL9RP1",
  "IL9RP2",
  "IL9RP3",
  "IL9RP4",
  "IL10",
  "IL10RA",
  "IL10RB",
  "IL10RB-AS1",
  "IL11",
  "IL11RA",
  "IL11RB",
  "IL12A",
  "IL12A-AS1",
  "IL12B",
  "IL12RB1",
  "IL12RB2",
  "IL13",
  "IL13RA1",
  "IL13RA2",
  "IL14",
  "IL15",
  "IL15RA",
  "IL16",
  "IL17A",
  "IL17B",
  "IL17C",
  "IL17D",
  "IL17F",
  "IL17RA",
  "IL17RB",
  "IL17RC",
  "IL17RD",
  "IL17RE",
  "IL17REL",
  "IL18",
  "IL18BP",
  "IL18R1",
  "IL18RAP",
  "IL19",
  "IL20",
  "IL20RA",
  "IL20RB",
  "IL20RB-AS1",
  "IL21",
  "IL21-AS1",
  "IL21R",
  "IL21R-AS1",
  "IL22",
  "IL22RA1",
  "IL22RA2",
  "IL23A",
  "IL23R",
  "IL24",
  "IL25",
  "IL26",
  "IL27",
  "IL27RA",
  "IL31",
  "IL31RA",
  "IL32",
  "IL33",
  "IL34",
  "IL36A",
  "IL36B",
  "IL36G",
  "IL36RN",
  "IL37",
  "ILCF",
  "ILDR1",
  "ILDR2",
  "ILF2",
  "ILF2P1",
  "ILF2P2",
  "ILF3",
  "ILF3-AS1",
  "ILK",
  "ILKAP",
  "ILVBL",
  "IMMP1L",
  "IMMP1LP1",
  "IMMP1LP2",
  "IMMP1LP3",
  "IMMP2L",
  "IMMT",
  "IMMTP1",
  "IMP3",
  "IMP3P1",
  "IMP3P2",
  "IMP4",
  "IMPA1",
  "IMPA1P1",
  "IMPA2",
  "IMPACT",
  "IMPAD1",
  "IMPDH1",
  "IMPDH1P1",
  "IMPDH1P2",
  "IMPDH1P3",
  "IMPDH1P4",
  "IMPDH1P5",
  "IMPDH1P6",
  "IMPDH1P7",
  "IMPDH1P8",
  "IMPDH1P9",
  "IMPDH1P10",
  "IMPDH1P11",
  "IMPDH2",
  "IMPG1",
  "IMPG2",
  "INA",
  "INAFM1",
  "INAFM2",
  "INCA1",
  "INCENP",
  "INE1",
  "INE2",
  "INF2",
  "ING1",
  "ING2",
  "ING3",
  "ING4",
  "ING5",
  "INGX",
  "INHA",
  "INHBA",
  "INHBA-AS1",
  "INHBB",
  "INHBC",
  "INHBE",
  "INIP",
  "INMT",
  "INMT-FAM188B",
  "INO80",
  "INO80B",
  "INO80B-WBP1",
  "INO80C",
  "INO80D",
  "INO80E",
  "INPP1",
  "INPP3",
  "INPP4A",
  "INPP4B",
  "INPP5A",
  "INPP5B",
  "INPP5C",
  "INPP5D",
  "INPP5E",
  "INPP5F",
  "INPP5J",
  "INPP5K",
  "INPPL1",
  "INS",
  "INS-IGF2",
  "INSAF",
  "INSC",
  "INSIG1",
  "INSIG2",
  "INSL1",
  "INSL2",
  "INSL3",
  "INSL4",
  "INSL5",
  "INSL6",
  "INSM1",
  "INSM2",
  "INSR",
  "INSRL",
  "INSRR",
  "INSSA2",
  "INTS1",
  "INTS2",
  "INTS3",
  "INTS4",
  "INTS4P1",
  "INTS4P2",
  "INTS5",
  "INTS6",
  "INTS6-AS1",
  "INTS6L",
  "INTS6L-AS1",
  "INTS6P1",
  "INTS7",
  "INTS8",
  "INTS9",
  "INTS10",
  "INTS12",
  "INTU",
  "INVS",
  "IP6K1",
  "IP6K2",
  "IP6K3",
  "IPCEF1",
  "IPMK",
  "IPMKP1",
  "IPO4",
  "IPO5",
  "IPO5P1",
  "IPO7",
  "IPO7P1",
  "IPO7P2",
  "IPO8",
  "IPO8P1",
  "IPO9",
  "IPO9-AS1",
  "IPO11",
  "IPO13",
  "IPP",
  "IPPK",
  "IPPKP1",
  "IPW",
  "IQCA1",
  "IQCA1-AS1",
  "IQCA1L",
  "IQCB1",
  "IQCB2P",
  "IQCC",
  "IQCD",
  "IQCE",
  "IQCF1",
  "IQCF2",
  "IQCF3",
  "IQCF5",
  "IQCF5-AS1",
  "IQCF6",
  "IQCG",
  "IQCH",
  "IQCH-AS1",
  "IQCJ",
  "IQCJ-SCHIP1",
  "IQCJ-SCHIP1-AS1",
  "IQCK",
  "IQGAP1",
  "IQGAP2",
  "IQGAP3",
  "IQSEC1",
  "IQSEC2",
  "IQSEC3",
  "IQSEC3P1",
  "IQSEC3P2",
  "IQSEC3P3",
  "IQUB",
  "IRAIN",
  "IRAK1",
  "IRAK1BP1",
  "IRAK2",
  "IRAK3",
  "IRAK4",
  "IREB2",
  "IRF1",
  "IRF2",
  "IRF2BP1",
  "IRF2BP2",
  "IRF2BPL",
  "IRF3",
  "IRF4",
  "IRF5",
  "IRF5P1",
  "IRF6",
  "IRF7",
  "IRF8",
  "IRF9",
  "IRGC",
  "IRGM",
  "IRGQ",
  "IRS1",
  "IRS2",
  "IRS3P",
  "IRS4",
  "IRX1",
  "IRX1P1",
  "IRX2",
  "IRX3",
  "IRX4",
  "IRX4P1",
  "IRX5",
  "IRX6",
  "ISCA1",
  "ISCA1P1",
  "ISCA1P2",
  "ISCA1P3",
  "ISCA1P4",
  "ISCA1P5",
  "ISCA1P6",
  "ISCA2",
  "ISCA2P1",
  "ISCU",
  "ISCUP1",
  "ISG15",
  "ISG20",
  "ISG20L2",
  "ISL1",
  "ISL2",
  "ISLR",
  "ISLR2",
  "ISM1",
  "ISM1-AS1",
  "ISM2",
  "ISOC1",
  "ISOC2",
  "ISPD",
  "ISPD-AS1",
  "IST1",
  "ISX",
  "ISX-AS1",
  "ISY1",
  "ISY1-RAB43",
  "ISYNA1",
  "ITCH",
  "ITCH-AS1",
  "ITCH-IT1",
  "ITFG1",
  "ITFG1-AS1",
  "ITFG2",
  "ITGA1",
  "ITGA2",
  "ITGA2B",
  "ITGA3",
  "ITGA4",
  "ITGA5",
  "ITGA6",
  "ITGA7",
  "ITGA8",
  "ITGA9",
  "ITGA9-AS1",
  "ITGA10",
  "ITGA11",
  "ITGAD",
  "ITGAE",
  "ITGAL",
  "ITGAM",
  "ITGAV",
  "ITGAW",
  "ITGAX",
  "ITGB1",
  "ITGB1BP1",
  "ITGB1BP2",
  "ITGB1P1",
  "ITGB2",
  "ITGB2-AS1",
  "ITGB3",
  "ITGB3BP",
  "ITGB4",
  "ITGB5",
  "ITGB5-AS1",
  "ITGB6",
  "ITGB7",
  "ITGB8",
  "ITGBL1",
  "ITIH1",
  "ITIH2",
  "ITIH2-AS1",
  "ITIH3",
  "ITIH4",
  "ITIH4-AS1",
  "ITIH5",
  "ITIH6",
  "ITK",
  "ITLN1",
  "ITLN2",
  "ITM2A",
  "ITM2B",
  "ITM2BP1",
  "ITM2C",
  "ITPA",
  "ITPK1",
  "ITPK1-AS1",
  "ITPKA",
  "ITPKB",
  "ITPKB-AS1",
  "ITPKB-IT1",
  "ITPKC",
  "ITPR1",
  "ITPR1-AS1",
  "ITPR2",
  "ITPR3",
  "ITPRIP",
  "ITPRIPL1",
  "ITPRIPL2",
  "ITSN1",
  "ITSN2",
  "IV",
  "IVD",
  "IVL",
  "IVNS1ABP",
  "IWS1",
  "IYD",
  "IZUMO1",
  "IZUMO1R",
  "IZUMO2",
  "IZUMO3",
  "IZUMO4",
  "JADE1",
  "JADE2",
  "JADE3",
  "JADRR",
  "JAG1",
  "JAG2",
  "JAGN1",
  "JAK1",
  "JAK2",
  "JAK3",
  "JAKMIP1",
  "JAKMIP2",
  "JAKMIP2-AS1",
  "JAKMIP3",
  "JAM2",
  "JAM3",
  "JAML",
  "JARID2",
  "JARID2-AS1",
  "JAZF1",
  "JAZF1-AS1",
  "JBS",
  "JCHAIN",
  "JDP2",
  "JHDM1D-AS1",
  "JKAMP",
  "JKAMPP1",
  "JMJD1C",
  "JMJD1C-AS1",
  "JMJD4",
  "JMJD6",
  "JMJD7",
  "JMJD7-PLA2G4B",
  "JMJD8",
  "JMY",
  "JOSD1",
  "JOSD2",
  "JPD",
  "JPH1",
  "JPH2",
  "JPH3",
  "JPH4",
  "JPX",
  "JRK",
  "JRKL",
  "JRKL-AS1",
  "JSRP1",
  "JTB",
  "JTBP1",
  "JUN",
  "JUNB",
  "JUND",
  "JUP",
  "K12T",
  "KAAG1",
  "KALRN",
  "KANK1",
  "KANK1P1",
  "KANK2",
  "KANK3",
  "KANK4",
  "KANSL1",
  "KANSL1-AS1",
  "KANSL1L",
  "KANSL2",
  "KANSL3",
  "KANTR",
  "KARS",
  "KARSP1",
  "KARSP2",
  "KARSP3",
  "KAT2A",
  "KAT2B",
  "KAT5",
  "KAT6A",
  "KAT6B",
  "KAT7",
  "KAT8",
  "KAT14",
  "KATNA1",
  "KATNAL1",
  "KATNAL2",
  "KATNB1",
  "KATNBL1",
  "KATNBL1P1",
  "KATNBL1P2",
  "KATNBL1P3",
  "KATNBL1P4",
  "KATNBL1P5",
  "KATNBL1P6",
  "KAZALD1",
  "KAZN",
  "KBTBD2",
  "KBTBD3",
  "KBTBD4",
  "KBTBD6",
  "KBTBD7",
  "KBTBD8",
  "KBTBD11",
  "KBTBD11-OT1",
  "KBTBD12",
  "KBTBD13",
  "KCMF1",
  "KCNA1",
  "KCNA2",
  "KCNA3",
  "KCNA4",
  "KCNA5",
  "KCNA6",
  "KCNA7",
  "KCNA10",
  "KCNAB1",
  "KCNAB1-AS1",
  "KCNAB1-AS2",
  "KCNAB2",
  "KCNAB3",
  "KCNB1",
  "KCNB2",
  "KCNC1",
  "KCNC2",
  "KCNC3",
  "KCNC4",
  "KCNC4-AS1",
  "KCND1",
  "KCND2",
  "KCND3",
  "KCND3-AS1",
  "KCND3-IT1",
  "KCNE1",
  "KCNE1B",
  "KCNE2",
  "KCNE3",
  "KCNE4",
  "KCNE5",
  "KCNF1",
  "KCNG1",
  "KCNG2",
  "KCNG3",
  "KCNG4",
  "KCNH1",
  "KCNH1-IT1",
  "KCNH2",
  "KCNH3",
  "KCNH4",
  "KCNH5",
  "KCNH6",
  "KCNH7",
  "KCNH8",
  "KCNIP1",
  "KCNIP2",
  "KCNIP2-AS1",
  "KCNIP3",
  "KCNIP4",
  "KCNIP4-IT1",
  "KCNJ1",
  "KCNJ2",
  "KCNJ2-AS1",
  "KCNJ3",
  "KCNJ4",
  "KCNJ5",
  "KCNJ6",
  "KCNJ6-AS1",
  "KCNJ8",
  "KCNJ9",
  "KCNJ10",
  "KCNJ11",
  "KCNJ12",
  "KCNJ13",
  "KCNJ14",
  "KCNJ15",
  "KCNJ16",
  "KCNJ18",
  "KCNK1",
  "KCNK2",
  "KCNK3",
  "KCNK4",
  "KCNK5",
  "KCNK6",
  "KCNK7",
  "KCNK9",
  "KCNK10",
  "KCNK12",
  "KCNK13",
  "KCNK15",
  "KCNK15-AS1",
  "KCNK16",
  "KCNK17",
  "KCNK18",
  "KCNMA1",
  "KCNMA1-AS1",
  "KCNMA1-AS2",
  "KCNMA1-AS3",
  "KCNMB1",
  "KCNMB2",
  "KCNMB2-AS1",
  "KCNMB3",
  "KCNMB3P1",
  "KCNMB4",
  "KCNN1",
  "KCNN2",
  "KCNN3",
  "KCNN4",
  "KCNQ1",
  "KCNQ1-AS1",
  "KCNQ1DN",
  "KCNQ1OT1",
  "KCNQ2",
  "KCNQ3",
  "KCNQ4",
  "KCNQ5",
  "KCNQ5-AS1",
  "KCNQ5-AS2",
  "KCNQ5-IT1",
  "KCNRG",
  "KCNS1",
  "KCNS2",
  "KCNS3",
  "KCNT1",
  "KCNT2",
  "KCNU1",
  "KCNV1",
  "KCNV2",
  "KCP",
  "KCTD1",
  "KCTD2",
  "KCTD3",
  "KCTD4",
  "KCTD5",
  "KCTD6",
  "KCTD7",
  "KCTD8",
  "KCTD9",
  "KCTD9P1",
  "KCTD9P2",
  "KCTD9P3",
  "KCTD9P4",
  "KCTD9P5",
  "KCTD9P6",
  "KCTD10",
  "KCTD10P1",
  "KCTD11",
  "KCTD12",
  "KCTD13",
  "KCTD14",
  "KCTD15",
  "KCTD16",
  "KCTD17",
  "KCTD18",
  "KCTD19",
  "KCTD20",
  "KCTD21",
  "KCTD21-AS1",
  "KDELC1",
  "KDELC1P1",
  "KDELC2",
  "KDELR1",
  "KDELR2",
  "KDELR3",
  "KDF1",
  "KDM1A",
  "KDM1B",
  "KDM2A",
  "KDM2B",
  "KDM3A",
  "KDM3B",
  "KDM4A",
  "KDM4A-AS1",
  "KDM4B",
  "KDM4C",
  "KDM4D",
  "KDM4E",
  "KDM5A",
  "KDM5B",
  "KDM5C",
  "KDM5C-IT1",
  "KDM5D",
  "KDM5DP1",
  "KDM6A",
  "KDM6B",
  "KDM7A",
  "KDM8",
  "KDR",
  "KDSR",
  "KEAP1",
  "KEL",
  "KERA",
  "KFM",
  "KHDC1",
  "KHDC1L",
  "KHDC1P1",
  "KHDC3L",
  "KHDRBS1",
  "KHDRBS2",
  "KHDRBS3",
  "KHK",
  "KHNYN",
  "KHSRP",
  "KHSRPP1",
  "KIAA0040",
  "KIAA0087",
  "KIAA0100",
  "KIAA0101",
  "KIAA0141",
  "KIAA0196-AS1",
  "KIAA0232",
  "KIAA0319",
  "KIAA0319L",
  "KIAA0355",
  "KIAA0368",
  "KIAA0391",
  "KIAA0408",
  "KIAA0430",
  "KIAA0513",
  "KIAA0556",
  "KIAA0586",
  "KIAA0753",
  "KIAA0754",
  "KIAA0825",
  "KIAA0895",
  "KIAA0895L",
  "KIAA0907",
  "KIAA0922",
  "KIAA0930",
  "KIAA1024",
  "KIAA1024L",
  "KIAA1107",
  "KIAA1109",
  "KIAA1143",
  "KIAA1147",
  "KIAA1161",
  "KIAA1191",
  "KIAA1210",
  "KIAA1211",
  "KIAA1211L",
  "KIAA1217",
  "KIAA1257",
  "KIAA1324",
  "KIAA1324L",
  "KIAA1328",
  "KIAA1429",
  "KIAA1456",
  "KIAA1462",
  "KIAA1468",
  "KIAA1522",
  "KIAA1524",
  "KIAA1549",
  "KIAA1549L",
  "KIAA1551",
  "KIAA1586",
  "KIAA1614",
  "KIAA1614-AS1",
  "KIAA1644",
  "KIAA1671",
  "KIAA1683",
  "KIAA1755",
  "KIAA1841",
  "KIAA1958",
  "KIAA2012",
  "KIAA2013",
  "KIAA2022",
  "KIAA2026",
  "KIDINS220",
  "KIF1A",
  "KIF1B",
  "KIF1BP",
  "KIF1C",
  "KIF2A",
  "KIF2B",
  "KIF2C",
  "KIF3A",
  "KIF3B",
  "KIF3C",
  "KIF4A",
  "KIF4B",
  "KIF4CP",
  "KIF5A",
  "KIF5B",
  "KIF5C",
  "KIF6",
  "KIF7",
  "KIF9",
  "KIF9-AS1",
  "KIF11",
  "KIF12",
  "KIF13A",
  "KIF13B",
  "KIF14",
  "KIF15",
  "KIF16B",
  "KIF17",
  "KIF18A",
  "KIF18B",
  "KIF18BP1",
  "KIF19",
  "KIF20A",
  "KIF20B",
  "KIF21A",
  "KIF21B",
  "KIF22",
  "KIF23",
  "KIF24",
  "KIF25",
  "KIF25-AS1",
  "KIF26A",
  "KIF26B",
  "KIF27",
  "KIF28P",
  "KIFAP3",
  "KIFC1",
  "KIFC2",
  "KIFC3",
  "KIN",
  "KIR2DL1",
  "KIR2DL2",
  "KIR2DL3",
  "KIR2DL4",
  "KIR2DL5A",
  "KIR2DL5B",
  "KIR2DP1",
  "KIR2DS1",
  "KIR2DS2",
  "KIR2DS3",
  "KIR2DS4",
  "KIR2DS5",
  "KIR3DL1",
  "KIR3DL2",
  "KIR3DL3",
  "KIR3DP1",
  "KIR3DS1",
  "KIR3DX1",
  "KIRREL",
  "KIRREL-IT1",
  "KIRREL2",
  "KIRREL3",
  "KIRREL3-AS1",
  "KIRREL3-AS2",
  "KIRREL3-AS3",
  "KISS1",
  "KISS1R",
  "KIT",
  "KITLG",
  "KIZ",
  "KIZ-AS1",
  "KL",
  "KLB",
  "KLC1",
  "KLC2",
  "KLC3",
  "KLC4",
  "KLF1",
  "KLF2",
  "KLF2P1",
  "KLF2P2",
  "KLF2P3",
  "KLF2P4",
  "KLF3",
  "KLF3-AS1",
  "KLF3P1",
  "KLF3P2",
  "KLF4",
  "KLF4P1",
  "KLF5",
  "KLF6",
  "KLF7",
  "KLF7-IT1",
  "KLF7P1",
  "KLF8",
  "KLF8P1",
  "KLF9",
  "KLF10",
  "KLF11",
  "KLF12",
  "KLF13",
  "KLF14",
  "KLF15",
  "KLF16",
  "KLF17",
  "KLF17P1",
  "KLF17P2",
  "KLF18",
  "KLHDC1",
  "KLHDC2",
  "KLHDC3",
  "KLHDC4",
  "KLHDC7A",
  "KLHDC7B",
  "KLHDC8A",
  "KLHDC8B",
  "KLHDC9",
  "KLHDC10",
  "KLHL1",
  "KLHL2",
  "KLHL2P1",
  "KLHL3",
  "KLHL4",
  "KLHL5",
  "KLHL6",
  "KLHL6-AS1",
  "KLHL7",
  "KLHL7-AS1",
  "KLHL8",
  "KLHL9",
  "KLHL10",
  "KLHL11",
  "KLHL12",
  "KLHL13",
  "KLHL14",
  "KLHL15",
  "KLHL17",
  "KLHL18",
  "KLHL20",
  "KLHL21",
  "KLHL22",
  "KLHL23",
  "KLHL24",
  "KLHL25",
  "KLHL26",
  "KLHL28",
  "KLHL29",
  "KLHL30",
  "KLHL30-AS1",
  "KLHL31",
  "KLHL32",
  "KLHL33",
  "KLHL34",
  "KLHL35",
  "KLHL36",
  "KLHL38",
  "KLHL40",
  "KLHL41",
  "KLHL42",
  "KLK1",
  "KLK2",
  "KLK3",
  "KLK4",
  "KLK5",
  "KLK6",
  "KLK7",
  "KLK8",
  "KLK9",
  "KLK10",
  "KLK11",
  "KLK12",
  "KLK13",
  "KLK14",
  "KLK15",
  "KLKB1",
  "KLKP1",
  "KLLN",
  "KLRA1P",
  "KLRB1",
  "KLRC1",
  "KLRC2",
  "KLRC3",
  "KLRC4",
  "KLRC4-KLRK1",
  "KLRD1",
  "KLRF1",
  "KLRF2",
  "KLRG1",
  "KLRG2",
  "KLRK1",
  "KMO",
  "KMS",
  "KMT2A",
  "KMT2B",
  "KMT2C",
  "KMT2D",
  "KMT2E",
  "KMT2E-AS1",
  "KMT5A",
  "KMT5B",
  "KMT5C",
  "KNCN",
  "KNDC1",
  "KNG1",
  "KNL1",
  "KNOP1",
  "KNOP1P1",
  "KNOP1P2",
  "KNOP1P3",
  "KNOP1P4",
  "KNOP1P5",
  "KNPEP",
  "KNSTRN",
  "KNTC1",
  "KPNA1",
  "KPNA2",
  "KPNA3",
  "KPNA3-IT1",
  "KPNA4",
  "KPNA5",
  "KPNA6",
  "KPNA7",
  "KPNB1",
  "KPRP",
  "KPTN",
  "KRAS",
  "KRASP1",
  "KRBA1",
  "KRBA2",
  "KRBOX1",
  "KRBOX1-AS1",
  "KRBOX4"
Download .txt
gitextract__qhtuh1y/

├── .dockerignore
├── .gitattributes
├── .gitignore
├── .vscode/
│   └── launch.json
├── CONTRIBUTING.md
├── DOCKER.md
├── Dockerfile
├── HugoGenes.json
├── INSTALL.md
├── LICENSE
├── README.md
├── admin/
│   ├── .editorconfig
│   ├── .github/
│   │   ├── CONTRIBUTING.md
│   │   ├── ISSUE_TEMPLATE.md
│   │   └── PULL_REQUEST_TEMPLATE.md
│   ├── .gitignore
│   ├── .nvmrc
│   ├── .travis.yml
│   ├── .vscode/
│   │   ├── launch.json
│   │   └── settings.json
│   ├── 3d/
│   │   └── a2/
│   │       ├── chart3.html
│   │       ├── index.html
│   │       └── xxxchart3.html
│   ├── Dockerfile
│   ├── config/
│   │   ├── github-deploy/
│   │   │   └── index.js
│   │   ├── head-config.common.js
│   │   ├── helpers.js
│   │   ├── html-elements-plugin/
│   │   │   └── index.js
│   │   ├── karma.conf.js
│   │   ├── modules/
│   │   │   └── angular2-hmr-prod.js
│   │   ├── protractor.conf.js
│   │   ├── spec-bundle.js
│   │   ├── webpack.common.js
│   │   ├── webpack.dev.js
│   │   ├── webpack.github-deploy.js
│   │   ├── webpack.prod.js
│   │   └── webpack.test.js
│   ├── karma.conf.js
│   ├── package.json
│   ├── protractor.conf.js
│   ├── src/
│   │   ├── app/
│   │   │   ├── app.container.ts
│   │   │   ├── app.module.ts
│   │   │   ├── app.resolver.ts
│   │   │   ├── components/
│   │   │   │   ├── alert/
│   │   │   │   │   ├── alert.component.ts
│   │   │   │   │   └── alert.template.html
│   │   │   │   ├── breadcrumb/
│   │   │   │   │   ├── crumb.component.ts
│   │   │   │   │   ├── crumb.service.ts
│   │   │   │   │   ├── crumb.template.html
│   │   │   │   │   └── index.ts
│   │   │   │   ├── combobox/
│   │   │   │   │   ├── combo.component.ts
│   │   │   │   │   └── combo.template.html
│   │   │   │   ├── footer/
│   │   │   │   │   ├── footer.component.ts
│   │   │   │   │   └── footer.template.html
│   │   │   │   ├── header/
│   │   │   │   │   ├── header.component.ts
│   │   │   │   │   └── header.template.html
│   │   │   │   ├── index.ts
│   │   │   │   ├── modal/
│   │   │   │   │   ├── modal.component.ts
│   │   │   │   │   └── modal.template.html
│   │   │   │   ├── sidebar/
│   │   │   │   │   ├── sidebar.component.ts
│   │   │   │   │   └── sidebar.template.html
│   │   │   │   └── smallbox/
│   │   │   │       ├── smallbox.component.ts
│   │   │   │       └── smallbox.template.html
│   │   │   ├── containers/
│   │   │   │   ├── +admin/
│   │   │   │   │   ├── acls/
│   │   │   │   │   │   ├── acls.container.ts
│   │   │   │   │   │   ├── acls.template.html
│   │   │   │   │   │   └── index.ts
│   │   │   │   │   ├── admin.container.ts
│   │   │   │   │   ├── admin.module.ts
│   │   │   │   │   ├── admin.routes.ts
│   │   │   │   │   ├── admin.template.html
│   │   │   │   │   ├── apis/
│   │   │   │   │   │   ├── apis.container.ts
│   │   │   │   │   │   ├── apis.template.html
│   │   │   │   │   │   ├── edit.container.ts
│   │   │   │   │   │   ├── index.ts
│   │   │   │   │   │   ├── new.container.ts
│   │   │   │   │   │   ├── new.template.html
│   │   │   │   │   │   ├── plugs.container.ts
│   │   │   │   │   │   └── plugs.template.html
│   │   │   │   │   ├── cluster/
│   │   │   │   │   │   ├── cluster.container.ts
│   │   │   │   │   │   ├── cluster.template.html
│   │   │   │   │   │   └── index.ts
│   │   │   │   │   ├── consumers/
│   │   │   │   │   │   ├── consumers.container.ts
│   │   │   │   │   │   ├── consumers.template.html
│   │   │   │   │   │   ├── edit.container.ts
│   │   │   │   │   │   ├── index.ts
│   │   │   │   │   │   ├── new.container.ts
│   │   │   │   │   │   └── new.template.html
│   │   │   │   │   ├── dashboard/
│   │   │   │   │   │   ├── dashboard.container.ts
│   │   │   │   │   │   ├── dashboard.template.html
│   │   │   │   │   │   └── index.ts
│   │   │   │   │   ├── index.ts
│   │   │   │   │   └── plugins/
│   │   │   │   │       ├── details.container.ts
│   │   │   │   │       ├── details.template.html
│   │   │   │   │       ├── forms/
│   │   │   │   │       │   ├── control.base.ts
│   │   │   │   │       │   ├── form.manager.ts
│   │   │   │   │       │   ├── form.service.ts
│   │   │   │   │       │   └── index.ts
│   │   │   │   │       ├── index.ts
│   │   │   │   │       ├── new.consumer.container.ts
│   │   │   │   │       ├── new.consumer.template.html
│   │   │   │   │       ├── new.plugin.container.ts
│   │   │   │   │       ├── new.plugin.template.html
│   │   │   │   │       ├── plugins.container.ts
│   │   │   │   │       └── plugins.template.html
│   │   │   │   ├── container.module.ts
│   │   │   │   ├── container.routes.ts
│   │   │   │   ├── home/
│   │   │   │   │   ├── home.container.ts
│   │   │   │   │   └── index.ts
│   │   │   │   ├── index.ts
│   │   │   │   └── login/
│   │   │   │       ├── index.ts
│   │   │   │       ├── login.container.ts
│   │   │   │       └── login.template.html
│   │   │   ├── core/
│   │   │   │   ├── configurator.ts
│   │   │   │   ├── container.ts
│   │   │   │   ├── descriptor.ts
│   │   │   │   ├── index.ts
│   │   │   │   ├── json.formatter.ts
│   │   │   │   ├── persistence.ts
│   │   │   │   └── state.ts
│   │   │   ├── environment.ts
│   │   │   ├── index.ts
│   │   │   └── shared/
│   │   │       ├── adapters/
│   │   │       │   ├── driver.ts
│   │   │       │   ├── index.ts
│   │   │       │   └── rest.adapter.ts
│   │   │       ├── constants.ts
│   │   │       ├── core.module.ts
│   │   │       ├── directives/
│   │   │       │   ├── fileselect.directive.ts
│   │   │       │   ├── index.ts
│   │   │       │   ├── size.directive.ts
│   │   │       │   └── tooltip.directive.ts
│   │   │       ├── index.ts
│   │   │       ├── models/
│   │   │       │   ├── apis.model.ts
│   │   │       │   ├── base.model.ts
│   │   │       │   ├── consumers.model.ts
│   │   │       │   ├── index.ts
│   │   │       │   ├── kong.model.ts
│   │   │       │   ├── menu.model.ts
│   │   │       │   ├── plugins/
│   │   │       │   │   ├── acl.model.ts
│   │   │       │   │   ├── basic.model.ts
│   │   │       │   │   ├── bot.model.ts
│   │   │       │   │   ├── correlation.model.ts
│   │   │       │   │   ├── cors.model.ts
│   │   │       │   │   ├── hmac.model.ts
│   │   │       │   │   ├── index.ts
│   │   │       │   │   ├── ip.model.ts
│   │   │       │   │   ├── jwt.model.ts
│   │   │       │   │   ├── key.model.ts
│   │   │       │   │   ├── ldap.model.ts
│   │   │       │   │   ├── oauth.model.ts
│   │   │       │   │   ├── rate.model.ts
│   │   │       │   │   ├── request.limiting.model.ts
│   │   │       │   │   ├── request.transformer.model.ts
│   │   │       │   │   ├── response.limiting.model.ts
│   │   │       │   │   └── ssl.model.ts
│   │   │       │   ├── plugins.model.ts
│   │   │       │   └── status.model.ts
│   │   │       ├── services/
│   │   │       │   ├── acls.service.ts
│   │   │       │   ├── apis.service.ts
│   │   │       │   ├── auth.service.ts
│   │   │       │   ├── base.service.ts
│   │   │       │   ├── cluster.service.ts
│   │   │       │   ├── consumers.service.ts
│   │   │       │   ├── guard.service.ts
│   │   │       │   ├── index.ts
│   │   │       │   ├── plugins.service.ts
│   │   │       │   ├── status.service.ts
│   │   │       │   └── uploader.service.ts
│   │   │       └── share.module.ts
│   │   ├── assets/
│   │   │   ├── build/
│   │   │   │   ├── adminlte-less/
│   │   │   │   │   ├── .csslintrc
│   │   │   │   │   ├── 404_500_errors.less
│   │   │   │   │   ├── AdminLTE.less
│   │   │   │   │   ├── alerts.less
│   │   │   │   │   ├── bootstrap-social.less
│   │   │   │   │   ├── boxes.less
│   │   │   │   │   ├── buttons.less
│   │   │   │   │   ├── callout.less
│   │   │   │   │   ├── carousel.less
│   │   │   │   │   ├── control-sidebar.less
│   │   │   │   │   ├── core.less
│   │   │   │   │   ├── direct-chat.less
│   │   │   │   │   ├── dropdown.less
│   │   │   │   │   ├── forms.less
│   │   │   │   │   ├── fullcalendar.less
│   │   │   │   │   ├── header.less
│   │   │   │   │   ├── info-box.less
│   │   │   │   │   ├── invoice.less
│   │   │   │   │   ├── labels.less
│   │   │   │   │   ├── lockscreen.less
│   │   │   │   │   ├── login_and_register.less
│   │   │   │   │   ├── mailbox.less
│   │   │   │   │   ├── miscellaneous.less
│   │   │   │   │   ├── mixins.less
│   │   │   │   │   ├── modal.less
│   │   │   │   │   ├── navs.less
│   │   │   │   │   ├── print.less
│   │   │   │   │   ├── products.less
│   │   │   │   │   ├── profile.less
│   │   │   │   │   ├── progress-bars.less
│   │   │   │   │   ├── select2.less
│   │   │   │   │   ├── sidebar-mini.less
│   │   │   │   │   ├── sidebar.less
│   │   │   │   │   ├── skins/
│   │   │   │   │   │   ├── _all-skins.less
│   │   │   │   │   │   ├── skin-black-light.less
│   │   │   │   │   │   ├── skin-black.less
│   │   │   │   │   │   ├── skin-blue-light.less
│   │   │   │   │   │   ├── skin-blue.less
│   │   │   │   │   │   ├── skin-green-light.less
│   │   │   │   │   │   ├── skin-green.less
│   │   │   │   │   │   ├── skin-purple-light.less
│   │   │   │   │   │   ├── skin-purple.less
│   │   │   │   │   │   ├── skin-red-light.less
│   │   │   │   │   │   ├── skin-red.less
│   │   │   │   │   │   ├── skin-yellow-light.less
│   │   │   │   │   │   └── skin-yellow.less
│   │   │   │   │   ├── small-box.less
│   │   │   │   │   ├── social-widgets.less
│   │   │   │   │   ├── table.less
│   │   │   │   │   ├── timeline.less
│   │   │   │   │   ├── users-list.less
│   │   │   │   │   └── variables.less
│   │   │   │   ├── bootstrap-less/
│   │   │   │   │   ├── mixins/
│   │   │   │   │   │   ├── alerts.less
│   │   │   │   │   │   ├── background-variant.less
│   │   │   │   │   │   ├── border-radius.less
│   │   │   │   │   │   ├── buttons.less
│   │   │   │   │   │   ├── center-block.less
│   │   │   │   │   │   ├── clearfix.less
│   │   │   │   │   │   ├── forms.less
│   │   │   │   │   │   ├── gradients.less
│   │   │   │   │   │   ├── grid-framework.less
│   │   │   │   │   │   ├── grid.less
│   │   │   │   │   │   ├── hide-text.less
│   │   │   │   │   │   ├── image.less
│   │   │   │   │   │   ├── labels.less
│   │   │   │   │   │   ├── list-group.less
│   │   │   │   │   │   ├── nav-divider.less
│   │   │   │   │   │   ├── nav-vertical-align.less
│   │   │   │   │   │   ├── opacity.less
│   │   │   │   │   │   ├── pagination.less
│   │   │   │   │   │   ├── panels.less
│   │   │   │   │   │   ├── progress-bar.less
│   │   │   │   │   │   ├── reset-filter.less
│   │   │   │   │   │   ├── reset-text.less
│   │   │   │   │   │   ├── resize.less
│   │   │   │   │   │   ├── responsive-visibility.less
│   │   │   │   │   │   ├── size.less
│   │   │   │   │   │   ├── tab-focus.less
│   │   │   │   │   │   ├── table-row.less
│   │   │   │   │   │   ├── text-emphasis.less
│   │   │   │   │   │   ├── text-overflow.less
│   │   │   │   │   │   └── vendor-prefixes.less
│   │   │   │   │   ├── mixins.less
│   │   │   │   │   └── variables.less
│   │   │   │   ├── fontawesome-less/
│   │   │   │   │   ├── animated.less
│   │   │   │   │   ├── bordered-pulled.less
│   │   │   │   │   ├── core.less
│   │   │   │   │   ├── fixed-width.less
│   │   │   │   │   ├── font-awesome.less
│   │   │   │   │   ├── icons.less
│   │   │   │   │   ├── larger.less
│   │   │   │   │   ├── list.less
│   │   │   │   │   ├── mixins.less
│   │   │   │   │   ├── path.less
│   │   │   │   │   ├── rotated-flipped.less
│   │   │   │   │   ├── screen-reader.less
│   │   │   │   │   ├── stacked.less
│   │   │   │   │   └── variables.less
│   │   │   │   ├── framework-less/
│   │   │   │   │   ├── _combobox.less
│   │   │   │   │   └── foundation.less
│   │   │   │   ├── ionicons-less/
│   │   │   │   │   ├── _ionicons-font.less
│   │   │   │   │   ├── _ionicons-icons.less
│   │   │   │   │   ├── _ionicons-variables.less
│   │   │   │   │   └── ionicons.less
│   │   │   │   └── style.less
│   │   │   ├── css/
│   │   │   │   ├── .gitkeep
│   │   │   │   ├── so.css
│   │   │   │   ├── style.css
│   │   │   │   └── style.css.bu.css
│   │   │   ├── data.json
│   │   │   ├── fonts/
│   │   │   │   └── FontAwesome.otf
│   │   │   ├── humans.txt
│   │   │   ├── icon/
│   │   │   │   └── browserconfig.xml
│   │   │   ├── manifest.json
│   │   │   ├── mock-data/
│   │   │   │   └── mock-data.json
│   │   │   ├── robots.txt
│   │   │   └── service-worker.js
│   │   ├── custom-typings.d.ts
│   │   ├── index.html
│   │   ├── main.browser.ts
│   │   ├── polyfills.browser.ts
│   │   └── vendor.browser.ts
│   ├── tsconfig.json
│   ├── tslint.json
│   ├── typedoc.json
│   └── webpack.config.js
├── cheatsheet.md
├── circle.yml
├── client/
│   ├── .bowerrc
│   ├── .editorconfig
│   ├── .eslintrc
│   ├── .gitignore
│   ├── .yo-rc.json
│   ├── bower.json
│   ├── e2e/
│   │   ├── .eslintrc
│   │   ├── main.po.js
│   │   └── main.spec.js
│   ├── gulp/
│   │   ├── .eslintrc
│   │   ├── build.js
│   │   ├── conf.js
│   │   ├── e2e-tests.js
│   │   ├── inject.js
│   │   ├── scripts.js
│   │   ├── server.js
│   │   ├── styles.js
│   │   ├── unit-tests.js
│   │   └── watch.js
│   ├── gulpfile.js
│   ├── karma.conf.js
│   ├── package.json
│   ├── protractor.conf.js
│   └── src/
│       ├── app/
│       │   ├── components/
│       │   │   ├── barchart/
│       │   │   │   ├── barchart.directive.js
│       │   │   │   ├── barchart.html
│       │   │   │   └── barchart.scss
│       │   │   ├── cohortmenu/
│       │   │   │   ├── cohortmenu.directive.js
│       │   │   │   ├── cohortmenu.html
│       │   │   │   └── cohortmenu.scss
│       │   │   ├── collectionpanel/
│       │   │   │   ├── collectionpanel.directive.js
│       │   │   │   ├── collectionpanel.html
│       │   │   │   └── collectionpanel.scss
│       │   │   ├── colorpanel/
│       │   │   │   ├── colorpanel.directive.js
│       │   │   │   ├── colorpanel.html
│       │   │   │   └── colorpanel.scss
│       │   │   ├── compareclusters/
│       │   │   │   ├── compareclusters.directive.js
│       │   │   │   ├── compareclusters.html
│       │   │   │   └── compareclusters.scss
│       │   │   ├── datasource/
│       │   │   │   ├── datasource.directive.js
│       │   │   │   ├── datasource.html
│       │   │   │   └── datasource.scss
│       │   │   ├── genedashboard/
│       │   │   │   ├── genedashboard.directive.js
│       │   │   │   ├── genedashboard.html
│       │   │   │   └── genedashboard.scss
│       │   │   ├── genemenu/
│       │   │   │   ├── genemenu.directive.js
│       │   │   │   ├── genemenu.html
│       │   │   │   └── genemenu.scss
│       │   │   ├── header/
│       │   │   │   ├── header.directive.js
│       │   │   │   ├── header.html
│       │   │   │   └── header.scss
│       │   │   ├── heatmap/
│       │   │   │   ├── heatmap.directive.js
│       │   │   │   ├── heatmap.html
│       │   │   │   └── heatmap.scss
│       │   │   ├── help/
│       │   │   │   ├── help.directive.js
│       │   │   │   ├── help.html
│       │   │   │   └── help.scss
│       │   │   ├── importpanel/
│       │   │   │   ├── importpanel.directive.js
│       │   │   │   ├── importpanel.html
│       │   │   │   └── importpanel.scss
│       │   │   ├── landing/
│       │   │   │   ├── landing.directive.js
│       │   │   │   ├── landing.html
│       │   │   │   └── landing.scss
│       │   │   ├── layoutpanel/
│       │   │   │   ├── layoutpanel.directive.js
│       │   │   │   ├── layoutpanel.html
│       │   │   │   └── layoutpanel.scss
│       │   │   ├── loader/
│       │   │   │   ├── loader.directive.js
│       │   │   │   ├── loader.html
│       │   │   │   └── loader.scss
│       │   │   ├── login/
│       │   │   │   ├── login.directive.js
│       │   │   │   ├── login.html
│       │   │   │   └── login.scss
│       │   │   ├── markers/
│       │   │   │   ├── markers.directive.js
│       │   │   │   ├── markers.html
│       │   │   │   ├── markers.scss
│       │   │   │   └── markers.worker.js
│       │   │   ├── oncoscape/
│       │   │   │   ├── oncoscape.api.service.js
│       │   │   │   ├── oncoscape.auth.service.js
│       │   │   │   ├── oncoscape.exception.factory.js
│       │   │   │   ├── oncoscape.http.factory.js
│       │   │   │   └── oncoscape.sound.service.js
│       │   │   ├── parallelcoord/
│       │   │   │   ├── parallelcoord.directive.js
│       │   │   │   ├── parallelcoord.html
│       │   │   │   └── parallelcoord.scss
│       │   │   ├── pathways/
│       │   │   │   ├── pathways.directive.js
│       │   │   │   ├── pathways.html
│       │   │   │   └── pathways.scss
│       │   │   ├── pca/
│       │   │   │   ├── pca.directive.js
│       │   │   │   ├── pca.html
│       │   │   │   └── pca.scss
│       │   │   ├── plsr/
│       │   │   │   ├── plsr.directive.js
│       │   │   │   ├── plsr.html
│       │   │   │   └── plsr.scss
│       │   │   ├── spreadsheet/
│       │   │   │   ├── spreadsheet.directive.js
│       │   │   │   ├── spreadsheet.html
│       │   │   │   └── spreadsheet.scss
│       │   │   ├── sunburst/
│       │   │   │   ├── sunburst.directive.js
│       │   │   │   ├── sunburst.html
│       │   │   │   └── sunburst.scss
│       │   │   ├── survival/
│       │   │   │   ├── survival.directive.js
│       │   │   │   ├── survival.html
│       │   │   │   └── survival.scss
│       │   │   ├── timelines/
│       │   │   │   ├── timelines.directive.js
│       │   │   │   ├── timelines.html
│       │   │   │   └── timelines.scss
│       │   │   ├── tools/
│       │   │   │   ├── tools.directive.js
│       │   │   │   ├── tools.html
│       │   │   │   └── tools.scss
│       │   │   ├── tray/
│       │   │   │   ├── tray.barchart.directive.js
│       │   │   │   ├── tray.directive.js
│       │   │   │   ├── tray.html
│       │   │   │   ├── tray.piechart.directive.js
│       │   │   │   └── tray.scss
│       │   │   └── userdatasource/
│       │   │       ├── userdatasource.directive.js
│       │   │       ├── userdatasource.html
│       │   │       └── userdatasource.scss
│       │   ├── index.config.js
│       │   ├── index.constants.js
│       │   ├── index.module.js
│       │   ├── index.route.js
│       │   ├── index.run.js
│       │   └── index.scss
│       ├── assets/
│       │   ├── bootstrap.js
│       │   ├── hello.js
│       │   ├── images/
│       │   │   └── textimage.js
│       │   └── lasso.js
│       ├── fonts/
│       │   └── FontAwesome.otf
│       ├── index.html
│       ├── privacy-policy.html
│       └── terms-of-service.html
├── client-build/
│   ├── app/
│   │   └── components/
│   │       └── markers/
│   │           └── markers.worker.js
│   ├── app.manifest
│   ├── assets/
│   │   ├── images/
│   │   │   └── textimage.js
│   │   └── lasso.js
│   ├── fonts/
│   │   └── FontAwesome.otf
│   ├── index.html
│   ├── privacy-policy.html
│   ├── scripts/
│   │   ├── app-02b6e51953.js
│   │   ├── app-04fb2e86f5.js
│   │   ├── app-13a45ef8c2.js
│   │   ├── app-164bd53929.js
│   │   ├── app-2ad8bbe0e6.js
│   │   ├── app-304ad47df5.js
│   │   ├── app-33010de103.js
│   │   ├── app-379a6d780c.js
│   │   ├── app-3aec4cf16a.js
│   │   ├── app-44a4050100.js
│   │   ├── app-493eb88db0.js
│   │   ├── app-4c74933d03.js
│   │   ├── app-584bf5bdfc.js
│   │   ├── app-5e4c0f52c4.js
│   │   ├── app-64850464b9.js
│   │   ├── app-7252b57c8a.js
│   │   ├── app-817f97333e.js
│   │   ├── app-95d9b45a1f.js
│   │   ├── app-98f7a31a45.js
│   │   ├── app-9e24740f47.js
│   │   ├── app-a00e325965.js
│   │   ├── app-ad7f3d64b7.js
│   │   ├── app-b29ee7ba93.js
│   │   ├── app-b6c603ad5a.js
│   │   ├── app-c5578db98c.js
│   │   ├── app-d30199b1fb.js
│   │   ├── app-d5579d90fc.js
│   │   ├── app-f211e6575c.js
│   │   ├── app-f34b7f2d5b.js
│   │   ├── app-fa41109fba.js
│   │   ├── vendor-02f3257444.js
│   │   ├── vendor-0d17bec3e0.js
│   │   ├── vendor-37afdc9179.js
│   │   ├── vendor-4ec3236b68.js
│   │   ├── vendor-86b5cb81a1.js
│   │   ├── vendor-badfbf33c8.js
│   │   ├── vendor-c20a98c97f.js
│   │   ├── vendor-c603de5b84.js
│   │   ├── vendor-caf5f1c0aa.js
│   │   └── vendor-f340df8778.js
│   ├── styles/
│   │   ├── app-15d8b9db63.css
│   │   ├── app-1601e15eb1.css
│   │   ├── app-17cb1cfc12.css
│   │   ├── app-2df1347999.css
│   │   ├── app-495a58e054.css
│   │   ├── app-5daa7f610e.css
│   │   ├── app-5e155a927d.css
│   │   ├── app-65b79735ed.css
│   │   ├── app-8c98214c95.css
│   │   ├── app-a5237ed41e.css
│   │   ├── app-a89e70f280.css
│   │   ├── app-ae12414f8f.css
│   │   ├── app-c47d90ead9.css
│   │   ├── app-e3bbae4248.css
│   │   ├── app-e67fcb941d.css
│   │   ├── app-ee01726226.css
│   │   ├── app-f2ffd68e38.css
│   │   └── vendor-c668aa093a.css
│   └── terms-of-service.html
├── cpu/
│   ├── oncoscape/
│   │   ├── .Rbuildignore
│   │   ├── DESCRIPTION
│   │   ├── GDCdata/
│   │   │   └── TCGA-GBM/
│   │   │       └── legacy/
│   │   │           └── Gene_expression/
│   │   │               └── Gene_expression_quantification/
│   │   │                   ├── 030e6faf-c38d-434b-85fc-d9e1428fbfa2/
│   │   │                   │   └── unc.edu.d1431a36-5c68-4e6e-9aea-72afe374efd1.1538177.rsem.genes.normalized_results
│   │   │                   ├── 033f8268-6964-46bf-88a2-d5bcc40561d0/
│   │   │                   │   └── unc.edu.d4934e65-dc47-4f98-b4d4-e9034a96f446.2403566.rsem.genes.normalized_results
│   │   │                   ├── 0351f0bd-0835-468a-90a9-134d52861021/
│   │   │                   │   └── unc.edu.85ef1d2f-2371-4fc7-a6f4-d102f4430b8a.2403422.rsem.genes.normalized_results
│   │   │                   ├── 0572e70f-ec92-457d-a315-c24f50254d13/
│   │   │                   │   └── unc.edu.f4d31bec-0bf5-4f59-ae0e-37170f1b692e.1532658.rsem.genes.normalized_results
│   │   │                   ├── 07ae5b2b-f7a2-4ea2-9bc3-91f45a1eadc5/
│   │   │                   │   └── unc.edu.ebe88950-c783-4487-9bfc-ccaaeacf256c.1534069.rsem.genes.normalized_results
│   │   │                   ├── 085d4070-ea44-4b80-9ec1-109a213afbfb/
│   │   │                   │   └── unc.edu.01b7a29e-0d3a-4a18-8cb6-f8a329f9d6e6.1545293.rsem.genes.normalized_results
│   │   │                   ├── 09a38471-f558-43cf-b127-ab42d9401ad9/
│   │   │                   │   └── unc.edu.612ef912-5a28-4c11-8703-3376f51afef5.1542073.rsem.genes.normalized_results
│   │   │                   ├── 0c79f62e-96ce-4e15-ae44-23868d2dde62/
│   │   │                   │   └── unc.edu.8fdc3c56-a96b-4cad-983a-12e6ef373069.1539929.rsem.genes.normalized_results
│   │   │                   ├── 0caa561c-2aa1-4082-90bf-c8f1a4ee104c/
│   │   │                   │   └── unc.edu.da360144-ffaf-4f38-bd87-96319fa8d2d4.1535650.rsem.genes.normalized_results
│   │   │                   ├── 0d21f209-d5ea-4686-a3cb-5f2013603846/
│   │   │                   │   └── unc.edu.db5b5af5-c221-4268-a978-e12c550989e7.1534385.rsem.genes.normalized_results
│   │   │                   ├── 0db7b8e3-444f-43e5-86fb-f021bacbbfdd/
│   │   │                   │   └── unc.edu.84d56a0b-6ee1-4fe7-9491-d8815af1d6f5.1540596.rsem.genes.normalized_results
│   │   │                   ├── 0f531499-6c9a-456b-9665-0423423da136/
│   │   │                   │   └── unc.edu.6f2fedb4-66e2-48fd-8744-cbd30075bb03.1540749.rsem.genes.normalized_results
│   │   │                   ├── 17fcd0b6-0917-4f48-8ca7-17f22485bf34/
│   │   │                   │   └── unc.edu.497767ca-3148-46d2-b4fc-15530c678b0b.1543281.rsem.genes.normalized_results
│   │   │                   ├── 1b154036-1468-4c91-9c97-edab3704b46b/
│   │   │                   │   └── unc.edu.570d3a26-6bcf-4442-aba9-95a01e84aa16.1542348.rsem.genes.normalized_results
│   │   │                   ├── 1b32438f-fc93-4855-99fc-c95fe47df82c/
│   │   │                   │   └── unc.edu.51fff807-cfea-4ff5-bd35-093b0c18f0fb.1543121.rsem.genes.normalized_results
│   │   │                   ├── 1e7f68da-686a-47d6-9272-bdd4b498686d/
│   │   │                   │   └── unc.edu.acb1160e-036a-4108-a9ce-d5f954191593.1538785.rsem.genes.normalized_results
│   │   │                   ├── 1f206613-6643-47d3-8dbd-26e0520756e9/
│   │   │                   │   └── unc.edu.37218c7d-74ed-43db-9556-a09006645998.1543891.rsem.genes.normalized_results
│   │   │                   ├── 217d72e9-4d6f-409d-911c-0a70b17a0adc/
│   │   │                   │   └── unc.edu.b469eb7c-723f-4870-b4e4-ebfaae7a118b.1536566.rsem.genes.normalized_results
│   │   │                   ├── 2316e46f-a138-4974-b0d7-c30b051468ad/
│   │   │                   │   └── unc.edu.f46e05f2-56b9-4a31-b0ec-882414a7aaf6.1532458.rsem.genes.normalized_results
│   │   │                   ├── 23b7ac20-d72e-4218-b206-b46ddddf0d83/
│   │   │                   │   └── unc.edu.05a2eea8-f366-4ae7-80f3-03324fb6e66e.1545318.rsem.genes.normalized_results
│   │   │                   ├── 23c9ca28-cef0-46e0-b126-aea5a531695f/
│   │   │                   │   └── unc.edu.ec85fbac-e181-4559-b601-d2efe44e37a8.1533900.rsem.genes.normalized_results
│   │   │                   ├── 24f041b4-0b63-4f5b-9c17-4de92f54ef3d/
│   │   │                   │   └── unc.edu.903d756b-42ba-49bd-9a53-085b3211d8a7.1539346.rsem.genes.normalized_results
│   │   │                   ├── 25565ee6-2c84-4474-9ec1-bd4f0a0cb507/
│   │   │                   │   └── unc.edu.61677ea1-64a7-46e3-8b99-784ee9af1ba5.1542154.rsem.genes.normalized_results
│   │   │                   ├── 27e3f11d-413d-4fb4-a56e-7ecdef403e78/
│   │   │                   │   └── unc.edu.92972663-4231-4e24-96d1-23857a445e03.1539770.rsem.genes.normalized_results
│   │   │                   ├── 28724a99-f098-43eb-b711-ff05734d7757/
│   │   │                   │   └── unc.edu.2db5af77-d0af-4c3c-bd2a-779e0a7228e0.1544729.rsem.genes.normalized_results
│   │   │                   ├── 28c63d25-49d5-45a6-b1d2-370b1d481457/
│   │   │                   │   └── unc.edu.748dc9ed-758b-43c9-af66-111f6ab3d6ce.1541034.rsem.genes.normalized_results
│   │   │                   ├── 2aabdc91-32ac-4c50-9a42-71f381136917/
│   │   │                   │   └── unc.edu.35578669-fb40-49fa-b6b5-3bd0f239fa7e.1544391.rsem.genes.normalized_results
│   │   │                   ├── 2bbfccc5-8dba-49c2-be90-1dd674d6c6fe/
│   │   │                   │   └── unc.edu.10c78528-13e4-4ce1-b171-939c9e4492d8.1544846.rsem.genes.normalized_results
│   │   │                   ├── 2eb357cb-b4b3-4e09-9a4a-a0a01f6fee1d/
│   │   │                   │   └── unc.edu.48f886d5-bb04-4fd1-809c-4b85730c4208.1543535.rsem.genes.normalized_results
│   │   │                   ├── 2f7364c8-c978-4762-9d3a-006ba984052c/
│   │   │                   │   └── unc.edu.47fbba7a-4914-4bcd-9fea-7ebb84fb4b47.1543813.rsem.genes.normalized_results
│   │   │                   ├── 2fab4b97-e5cb-45c5-afd8-3026d17ee7ef/
│   │   │                   │   └── unc.edu.2cd6082b-d5e7-45a1-96f9-8ef4cccf8533.1544424.rsem.genes.normalized_results
│   │   │                   ├── 30d564ee-3d4d-4495-ae83-068d7c365e24/
│   │   │                   │   └── unc.edu.48724ea4-25f1-463c-883a-69897e7d9a41.1543761.rsem.genes.normalized_results
│   │   │                   ├── 31535411-fb03-489e-8a24-a5b068e47665/
│   │   │                   │   └── unc.edu.f4398f60-1a5f-426f-8d4c-ab52d815bb98.1532557.rsem.genes.normalized_results
│   │   │                   ├── 33f771a6-3e17-4fec-8d7c-9c23b5e077a0/
│   │   │                   │   └── unc.edu.ca803595-2792-4d7d-81f6-cce8d96d0119.1538272.rsem.genes.normalized_results
│   │   │                   ├── 34780b11-7c55-4792-8454-9ef4b0a5cc09/
│   │   │                   │   └── unc.edu.95d8884d-0961-4070-be07-55dce4c7bc8f.1539496.rsem.genes.normalized_results
│   │   │                   ├── 35a1796f-2f29-41f0-b0a2-2b7623f990a0/
│   │   │                   │   └── unc.edu.6f987110-3dbf-4f06-952a-e1aea4b81b44.1540887.rsem.genes.normalized_results
│   │   │                   ├── 35e58acc-3367-4077-9c55-e9ec8166aa04/
│   │   │                   │   └── unc.edu.03422479-a670-44ed-a9f7-33f4554ef6f6.1545390.rsem.genes.normalized_results
│   │   │                   ├── 36f8d0b4-a8b9-4749-9797-83f21befa3e8/
│   │   │                   │   └── unc.edu.07775763-1931-4f95-ad0a-094a228a3770.1545195.rsem.genes.normalized_results
│   │   │                   ├── 3928de1a-346f-4d8e-8a37-b922395f0c08/
│   │   │                   │   └── unc.edu.d39f75a1-3216-4f0a-86d2-0055feced3dd.1537587.rsem.genes.normalized_results
│   │   │                   ├── 3c6504dd-0683-40ec-9919-fe3e351cc297/
│   │   │                   │   └── unc.edu.bbd74b84-fee5-45ee-9b76-b84d54a42a08.2403856.rsem.genes.normalized_results
│   │   │                   ├── 3d156563-07d5-4158-8e4c-8a4c0ab15183/
│   │   │                   │   └── unc.edu.a0dfc338-c576-4a9c-8db3-3bbbcd5dc960.1539575.rsem.genes.normalized_results
│   │   │                   ├── 4050727b-22e8-4102-93f7-2371d8f37ed9/
│   │   │                   │   └── unc.edu.125927b5-24fd-4910-8b21-6fe37adb8a7c.1544945.rsem.genes.normalized_results
│   │   │                   ├── 40ae6f2d-3491-4b41-9e96-63b081bef293/
│   │   │                   │   └── unc.edu.ee783da8-98c4-4107-8e9b-af8580ac2f24.1533118.rsem.genes.normalized_results
│   │   │                   ├── 40b345d0-129d-47d9-86e3-3938730c6694/
│   │   │                   │   └── unc.edu.4aa70762-1a0e-4b38-be77-a89db0955193.1542658.rsem.genes.normalized_results
│   │   │                   ├── 429c0237-d2bd-4e4d-90ca-da77818ebf7c/
│   │   │                   │   └── unc.edu.9f591278-eec9-422f-9b78-77f65fa84f18.1539408.rsem.genes.normalized_results
│   │   │                   ├── 43c9796d-841e-471e-a813-fa2ffff44298/
│   │   │                   │   └── unc.edu.17c98d8c-8bd4-4b16-a384-0497d730f497.1545016.rsem.genes.normalized_results
│   │   │                   ├── 45dd1666-976c-4229-943e-ae1631fd8ad6/
│   │   │                   │   └── unc.edu.f2d1056f-1329-44e4-8269-0e7dde93d64a.1532585.rsem.genes.normalized_results
│   │   │                   ├── 462c000b-c125-4b6b-9f6a-ae423f63bc06/
│   │   │                   │   └── unc.edu.25315562-5f8e-46d0-ab77-d1f6ce75270b.1544654.rsem.genes.normalized_results
│   │   │                   ├── 464027f4-4b44-4c76-9260-887c3a38f1a0/
│   │   │                   │   └── unc.edu.33daf82d-0b4d-474e-84d7-f21c47077c95.1542932.rsem.genes.normalized_results
│   │   │                   ├── 46cc24f6-0ef9-48e9-a96a-3e72960c7272/
│   │   │                   │   └── unc.edu.49516e85-eebe-491b-90eb-c76e4425f130.1543064.rsem.genes.normalized_results
│   │   │                   ├── 4cd4dc2f-93d5-4ee1-94d0-87465ce0f7c8/
│   │   │                   │   └── unc.edu.a77fc356-53b6-4932-a369-4bb7b89f8ed2.1538133.rsem.genes.normalized_results
│   │   │                   ├── 4ecfcdc3-0227-4bb0-b175-06a47cf647a1/
│   │   │                   │   └── unc.edu.31398055-e000-4ca1-a37d-aac2df5920b4.1544172.rsem.genes.normalized_results
│   │   │                   ├── 4f366619-7eb2-4d1e-bf2c-5de975c60e51/
│   │   │                   │   └── unc.edu.7522ddf3-0d35-4085-9f94-1ca2e38aa804.1541255.rsem.genes.normalized_results
│   │   │                   ├── 5253951e-d078-4c9a-aa86-77883229a86a/
│   │   │                   │   └── unc.edu.66f6da01-b85b-4e29-8059-0bb6a32d709f.1541610.rsem.genes.normalized_results
│   │   │                   ├── 5295b385-6a4f-4476-90ca-85c81c7a968f/
│   │   │                   │   └── unc.edu.8880d24b-a72e-4472-8d14-19e58e0a61ae.1540132.rsem.genes.normalized_results
│   │   │                   ├── 53cb60f9-0c0f-4d58-9c98-39c2b657f1f6/
│   │   │                   │   └── unc.edu.f026a95f-89a7-464f-a8f2-ea036fe1774f.1533771.rsem.genes.normalized_results
│   │   │                   ├── 543b714e-ca1e-434d-a703-e3715e75b665/
│   │   │                   │   └── unc.edu.10bfa2d8-228f-43d8-ae15-1f58c25d1be3.1544894.rsem.genes.normalized_results
│   │   │                   ├── 57c2cc26-5767-4003-9e10-3016e2d3bdd3/
│   │   │                   │   └── unc.edu.616011aa-5aad-4078-85a6-e61f98d83363.1543127.rsem.genes.normalized_results
│   │   │                   ├── 5843988f-3c0b-4c36-8e17-b52d2a9accb8/
│   │   │                   │   └── unc.edu.6b59b1e5-4593-49f9-add7-b41e719d7af6.1541343.rsem.genes.normalized_results
│   │   │                   ├── 5cd0729b-3a3a-4de0-8014-038966f5616b/
│   │   │                   │   └── unc.edu.94f66829-3cef-4af2-9f97-2352ac85efee.2403684.rsem.genes.normalized_results
│   │   │                   ├── 5dc589f1-28f2-4129-b736-ea8b0964df5f/
│   │   │                   │   └── unc.edu.110100d2-bfb8-42d2-875f-9424a8bd2086.1544980.rsem.genes.normalized_results
│   │   │                   ├── 5ebb37b6-0b33-46b9-a14c-f68672c44cc9/
│   │   │                   │   └── unc.edu.3721666c-f46f-4b43-9f5d-b3cf85af176c.1543702.rsem.genes.normalized_results
│   │   │                   ├── 60ac58c0-5731-430d-b775-0a5be6a483f3/
│   │   │                   │   └── unc.edu.2e5a4130-bc62-4986-948b-b741b3fbdc7a.1544090.rsem.genes.normalized_results
│   │   │                   ├── 61c8ed04-0f81-40b4-a757-a50f9e92721b/
│   │   │                   │   └── unc.edu.d722657b-e5b6-4476-94e9-1135ce8aecad.1535571.rsem.genes.normalized_results
│   │   │                   ├── 621796a7-72d4-4131-9d2c-6ee5c4b7ae12/
│   │   │                   │   └── unc.edu.94985059-d992-4f1f-ae67-36cf287f443d.1539984.rsem.genes.normalized_results
│   │   │                   ├── 636714b7-f212-4d41-9016-c97c5604e7cd/
│   │   │                   │   └── unc.edu.28239a0e-9990-49ef-a159-ba63fb078c77.1543931.rsem.genes.normalized_results
│   │   │                   ├── 6370b4c4-4607-4476-a51b-eeac8b8570c1/
│   │   │                   │   └── unc.edu.39b5a7b5-e2ec-442d-94c4-ba938ee79b97.1542468.rsem.genes.normalized_results
│   │   │                   ├── 65d271c0-095a-483e-8a4d-110eb6a53f1c/
│   │   │                   │   └── unc.edu.d29e5a15-6ad2-41f9-b4e8-5c4b0f3fda9e.1537606.rsem.genes.normalized_results
│   │   │                   ├── 661d504a-fbcf-44fa-b4f6-1930ac978229/
│   │   │                   │   └── unc.edu.5d40c2af-b2e9-407c-be1f-780a9071fbe7.1542836.rsem.genes.normalized_results
│   │   │                   ├── 698c106a-7014-4306-b475-cfe357bdbd8f/
│   │   │                   │   └── unc.edu.e50235f8-f8cf-44c8-9d5e-ca5bbbb6291a.1536299.rsem.genes.normalized_results
│   │   │                   ├── 699e06cb-5094-4d40-9e0c-265ccd39ccc2/
│   │   │                   │   └── unc.edu.ca6d5ed3-f6f7-4dde-be24-7652d7dfab16.1539001.rsem.genes.normalized_results
│   │   │                   ├── 6dad3d39-f85c-47fe-989c-9054c088d1a9/
│   │   │                   │   └── unc.edu.2ee686c6-da57-4371-90a9-db02ab6cb278.1544194.rsem.genes.normalized_results
│   │   │                   ├── 6e72263b-9356-46eb-b7f5-3afd19d04f72/
│   │   │                   │   └── unc.edu.d577af6d-d9f1-435d-8429-73b5c5962238.1536803.rsem.genes.normalized_results
│   │   │                   ├── 700cd1ba-cfa1-4a95-83d1-bbfdaecf5986/
│   │   │                   │   └── unc.edu.4d2bc147-bed8-4621-be86-f32559f0ed91.1542532.rsem.genes.normalized_results
│   │   │                   ├── 70d769a1-5335-4013-841f-086d4ea5b300/
│   │   │                   │   └── unc.edu.82d0310c-7bd8-422e-97a7-7e73be8d8a30.1540255.rsem.genes.normalized_results
│   │   │                   ├── 72ef94c4-d9e3-41de-ac3d-74ac62366a57/
│   │   │                   │   └── unc.edu.271ec214-e83b-4fcb-85cf-f35f3c39f0aa.1544713.rsem.genes.normalized_results
│   │   │                   ├── 73c364ce-44df-4d5d-a9e0-46a57956ca10/
│   │   │                   │   └── unc.edu.a344de7b-5980-4612-9d58-1c8058a2bfd9.1539170.rsem.genes.normalized_results
│   │   │                   ├── 7837237e-bd45-4928-8004-0fcab19e1206/
│   │   │                   │   └── unc.edu.56a705f4-fd28-44ff-8a3c-85bc4300c760.1543366.rsem.genes.normalized_results
│   │   │                   ├── 7971e5a9-efa0-475f-a37f-06cd718dfc0b/
│   │   │                   │   └── unc.edu.fbf2f1c0-fb91-4548-8653-68021e6541f9.1532635.rsem.genes.normalized_results
│   │   │                   ├── 799898e4-dee7-4428-a3b3-a386a6bd92f5/
│   │   │                   │   └── unc.edu.04e97d81-96bb-40e7-9e8c-1efb19179a62.1545277.rsem.genes.normalized_results
│   │   │                   ├── 7c2937a3-ddbf-4f48-9fe4-acd572a4ec23/
│   │   │                   │   └── unc.edu.b1019532-963f-4c8e-ba55-b03dea8b5498.1537428.rsem.genes.normalized_results
│   │   │                   ├── 7d0d6ab2-c29e-4007-858b-4766c0e1b238/
│   │   │                   │   └── unc.edu.f5fffae0-0fbe-40f8-93d7-525407048620.1532689.rsem.genes.normalized_results
│   │   │                   ├── 7fa752be-0d51-4918-a6dd-bc1076d23402/
│   │   │                   │   └── unc.edu.689fb14c-d3c5-414f-8c7a-8aa73ebbfc37.1542042.rsem.genes.normalized_results
│   │   │                   ├── 828403b2-a0d3-4fe3-a983-9fc0c07dd45d/
│   │   │                   │   └── unc.edu.f2ab5972-46e6-4d13-bf8e-dffc1dc8a9e9.1533331.rsem.genes.normalized_results
│   │   │                   ├── 83d51263-0346-426e-8b35-1fec12ff3b8a/
│   │   │                   │   └── unc.edu.e454530c-3b94-444c-bd1a-682b6048aa94.1537013.rsem.genes.normalized_results
│   │   │                   ├── 8402365b-79a4-4748-ae70-9e356c1cc90f/
│   │   │                   │   └── unc.edu.2d1481b0-3bdd-4b9e-b1e1-813d0c624c25.1544226.rsem.genes.normalized_results
│   │   │                   ├── 84ed6bfb-b8b1-47b6-aa31-95db12692c9d/
│   │   │                   │   └── unc.edu.5522993c-6439-483c-97a6-843026d5198b.1542029.rsem.genes.normalized_results
│   │   │                   ├── 879e17f0-1115-4127-8287-6ae9dbffda59/
│   │   │                   │   └── unc.edu.67b4bd07-77fd-4595-b2a0-5f3a3a43a221.1541113.rsem.genes.normalized_results
│   │   │                   ├── 8806edc4-addb-4b8b-bc4c-355cbf8c399c/
│   │   │                   │   └── unc.edu.4bd8bbae-7370-43c7-89cb-0fe0028553dd.1541638.rsem.genes.normalized_results
│   │   │                   ├── 8ab0c9d6-d006-4d1c-b7c0-468b08f44bfe/
│   │   │                   │   └── unc.edu.6f9d76f0-ff61-4c58-ab2f-a7c84e9726e9.1540819.rsem.genes.normalized_results
│   │   │                   ├── 8becb41e-2ace-429d-b4cb-45e26d7ed65c/
│   │   │                   │   └── unc.edu.1dd740dc-2752-4511-ac12-45766c8e2737.1544779.rsem.genes.normalized_results
│   │   │                   ├── 916fdf6c-e008-4415-9be2-e8095697277a/
│   │   │                   │   └── unc.edu.8401d72d-a286-4541-b566-c6212ef4c89c.1540249.rsem.genes.normalized_results
│   │   │                   ├── 95321a6a-c6b0-42bd-b60a-cd9b8328ec9e/
│   │   │                   │   └── unc.edu.102a0737-7d27-46b8-a433-4f1bb5300858.1545071.rsem.genes.normalized_results
│   │   │                   ├── 954c898a-b5ae-4fec-880b-890d4a9e037b/
│   │   │                   │   └── unc.edu.23b23702-8e0f-4b4c-ad92-ce7ea44939e6.1544065.rsem.genes.normalized_results
│   │   │                   ├── 973ce0ac-f613-4b99-b2ab-3e2d5548f05f/
│   │   │                   │   └── unc.edu.152afe8c-f67c-4d7c-93ac-e1b7edd56c54.1544649.rsem.genes.normalized_results
│   │   │                   ├── 9815bfe2-bf6d-4a05-9107-778e334dacdc/
│   │   │                   │   └── unc.edu.559a1178-052c-4452-876c-ba2468a3160a.1543346.rsem.genes.normalized_results
│   │   │                   ├── 9c5b8d25-51bd-4be3-918c-1219e671608b/
│   │   │                   │   └── unc.edu.5f19c351-94d4-4164-aa7e-4a0f44640cbb.1542155.rsem.genes.normalized_results
│   │   │                   ├── 9c96849a-86a6-43bb-8601-927a68c77536/
│   │   │                   │   └── unc.edu.66b268a8-8652-4efc-8b2e-cf4ac6e00516.1542556.rsem.genes.normalized_results
│   │   │                   ├── 9cbc854d-1f69-40a1-9c2f-8a715c495524/
│   │   │                   │   └── unc.edu.c6d836ec-710d-4559-ba66-2715f6a55d4c.1538758.rsem.genes.normalized_results
│   │   │                   ├── 9d3dfe99-d16d-4aa5-9415-3cab0ffd2988/
│   │   │                   │   └── unc.edu.2de8f5dd-decd-47f4-856a-bda678ee6ab8.1544304.rsem.genes.normalized_results
│   │   │                   ├── 9e831601-155f-4e31-b4b7-fd42998c0132/
│   │   │                   │   └── unc.edu.777c1ad8-ae6d-4c17-ad59-8b26adb67a1b.1539904.rsem.genes.normalized_results
│   │   │                   ├── 9f16356c-1750-4fb6-80bc-c47d72f005c9/
│   │   │                   │   └── unc.edu.ecd3ecba-4d25-4995-91df-e076f0cbe2bc.1534635.rsem.genes.normalized_results
│   │   │                   ├── 9f646e6b-45ce-4170-9d91-28b7ea1a6910/
│   │   │                   │   └── unc.edu.faadb03e-20bc-4308-a86b-2bdb6aad8a23.1532177.rsem.genes.normalized_results
│   │   │                   ├── a0c266ce-1d4c-490c-bcd3-342b8e6c1373/
│   │   │                   │   └── unc.edu.39580733-5ff1-43a1-b9fd-53b6f6e879bd.1544051.rsem.genes.normalized_results
│   │   │                   ├── a1b10d2c-757b-400f-98e4-b8cfa83ba4c5/
│   │   │                   │   └── unc.edu.8dd4d862-180f-479b-8d87-0eaae4fc9236.1539924.rsem.genes.normalized_results
│   │   │                   ├── a3d5de70-5394-4370-8ca2-f6d9320e63d5/
│   │   │                   │   └── unc.edu.67068dc6-6270-4e7b-a857-3008dadc2d59.1541836.rsem.genes.normalized_results
│   │   │                   ├── a7363d76-fdbd-4163-b34c-2fdec99b1ea8/
│   │   │                   │   └── unc.edu.df36c4af-258e-4cfb-9550-d3580d097547.1537625.rsem.genes.normalized_results
│   │   │                   ├── a7c6a6b3-33c1-4e6d-88af-5af02c43f488/
│   │   │                   │   └── unc.edu.aba4cde6-c407-4cfb-922e-5b4402aae727.2403444.rsem.genes.normalized_results
│   │   │                   ├── a7e6d601-3aa7-4238-b1df-c154aaf60811/
│   │   │                   │   └── unc.edu.cf7e2358-7542-4381-90f4-782663ddc63a.1537371.rsem.genes.normalized_results
│   │   │                   ├── a851c9c7-15a6-447d-a29a-f12819e6855c/
│   │   │                   │   └── unc.edu.4df60632-cb31-4c0f-8929-d18129668469.1543072.rsem.genes.normalized_results
│   │   │                   ├── a895d249-3119-43c3-82f5-291fc36bf8b6/
│   │   │                   │   └── unc.edu.ea85c76f-5334-495d-9615-d3f503c0d088.1535074.rsem.genes.normalized_results
│   │   │                   ├── a9049e21-37c4-4954-80d7-8ccca25e4837/
│   │   │                   │   └── unc.edu.75ed138d-252f-4179-b93f-4ae8eb2524ee.1541072.rsem.genes.normalized_results
│   │   │                   ├── a98cb466-a188-4deb-a58c-03020c5255a2/
│   │   │                   │   └── unc.edu.63f989ff-890b-4db8-973f-ab675912635f.1542128.rsem.genes.normalized_results
│   │   │                   ├── aa0eec52-8805-42df-813a-b3b8a6c02db4/
│   │   │                   │   └── unc.edu.065048d0-ecbf-4de2-b12a-55e52f8d1279.1545237.rsem.genes.normalized_results
│   │   │                   ├── ab4f97e3-abfd-416c-94aa-1b19af44b1a6/
│   │   │                   │   └── unc.edu.8604df30-9170-41e2-8dfb-2feb813807ac.1540475.rsem.genes.normalized_results
│   │   │                   ├── abeef750-e92f-4f60-9bed-9f7e85f0af27/
│   │   │                   │   └── unc.edu.0ffc2552-883a-4e8f-9f76-4f37dfce3278.1545073.rsem.genes.normalized_results
│   │   │                   ├── ac2cd0ae-a224-43a6-860b-19f927e1456a/
│   │   │                   │   └── unc.edu.ebadf417-08e8-4e89-bc8b-f7a74b0fc781.1534266.rsem.genes.normalized_results
│   │   │                   ├── ac7dc275-f20f-43c2-bd44-27f3687fac9e/
│   │   │                   │   └── unc.edu.23c2c2d5-d035-4875-a109-aa0a4c34c20e.1544506.rsem.genes.normalized_results
│   │   │                   ├── ad18662f-5f4e-440d-b795-229246b3ec98/
│   │   │                   │   └── unc.edu.c893538c-d12c-4dd1-a3fd-cba6a847c14e.1537703.rsem.genes.normalized_results
│   │   │                   ├── ae2a032e-283d-4d17-8b52-b8c46fe7dc4d/
│   │   │                   │   └── unc.edu.6ced4dca-5999-4063-90e9-6ba1851ab054.1541766.rsem.genes.normalized_results
│   │   │                   ├── b1d53f55-7a42-4c58-bda4-cbfc2c90a196/
│   │   │                   │   └── unc.edu.6f54bcd2-99e9-4f9b-a9b8-6963b922f783.1541470.rsem.genes.normalized_results
│   │   │                   ├── b2ab7cce-2e16-4d60-a49b-fd06e84a45e9/
│   │   │                   │   └── unc.edu.cea49633-24f0-48c4-b2d0-fed47d5364e6.1536809.rsem.genes.normalized_results
│   │   │                   ├── b7011bdc-3781-4fe9-a7b5-91d1ff19bfa5/
│   │   │                   │   └── unc.edu.6287ca85-ad7b-4656-9c6e-8c3c44833462.1541728.rsem.genes.normalized_results
│   │   │                   ├── b766a1db-4aa9-432e-9d98-849a4f115ead/
│   │   │                   │   └── unc.edu.88958da0-8140-466c-8183-bf4995529b16.1540180.rsem.genes.normalized_results
│   │   │                   ├── b7e2b266-97ce-4fb9-af9c-e78aa2dfdf38/
│   │   │                   │   └── unc.edu.98937e70-6d2c-4057-b5ef-e01d0006486f.1540102.rsem.genes.normalized_results
│   │   │                   ├── bb99c7ea-e3ec-434a-95e5-e7834f1cede5/
│   │   │                   │   └── unc.edu.febcf9af-1a79-4234-a095-4efa3c3aa2bc.1532748.rsem.genes.normalized_results
│   │   │                   ├── bc30c903-74ea-4abd-be23-44f73d351415/
│   │   │                   │   └── unc.edu.b337121c-9821-4644-820e-b8c477f6c38a.1539094.rsem.genes.normalized_results
│   │   │                   ├── bc32c876-6ba4-472d-a9d1-af76da67022b/
│   │   │                   │   └── unc.edu.e64a2789-9b0e-41ca-9447-b17d8968f4cd.1535414.rsem.genes.normalized_results
│   │   │                   ├── bd00a4fa-1690-4d06-8c6a-d41e405852bf/
│   │   │                   │   └── unc.edu.48a2ae8d-a9c4-4d06-8619-ad49502b3721.1543325.rsem.genes.normalized_results
│   │   │                   ├── be11e67f-6251-45af-a4f9-a637a6bd7c7d/
│   │   │                   │   └── unc.edu.e48c8261-5e7b-4cbe-95ed-8a7d1c356d70.1536380.rsem.genes.normalized_results
│   │   │                   ├── befa7283-6d1c-4f5c-807d-9bc62ed3e72a/
│   │   │                   │   └── unc.edu.6870c515-1f0e-4481-82bf-7cde66292278.1541238.rsem.genes.normalized_results
│   │   │                   ├── c0d60224-7368-4621-bbcc-a66b86b4407d/
│   │   │                   │   └── unc.edu.5cb5c8ef-740d-4f9d-b081-107a3e4390f6.1542246.rsem.genes.normalized_results
│   │   │                   ├── c24f03cc-f75f-4f9f-b4f9-4d0261f8b1ec/
│   │   │                   │   └── unc.edu.f2a757d2-2574-4840-88ea-5ffd09d0103c.1533877.rsem.genes.normalized_results
│   │   │                   ├── c3485622-d671-4efd-95db-065bb30f3820/
│   │   │                   │   └── unc.edu.d52e7499-1325-4506-ae20-bd683d37318e.1537025.rsem.genes.normalized_results
│   │   │                   ├── c391cb63-f763-4d00-a641-8e68c7393cea/
│   │   │                   │   └── unc.edu.06fcbf45-4b5a-4c5a-976e-9b7bf57479dd.1545160.rsem.genes.normalized_results
│   │   │                   ├── c4205e91-7e7a-4aeb-96fe-758a298209bf/
│   │   │                   │   └── unc.edu.d8164b02-4b3c-454d-945b-2838edb1b5b1.1535735.rsem.genes.normalized_results
│   │   │                   ├── c6332aad-f888-41cb-93aa-a4791b33c1cc/
│   │   │                   │   └── unc.edu.69336246-eb91-424b-9cd2-8cbdcf7adfe7.1540976.rsem.genes.normalized_results
│   │   │                   ├── c65ad0e5-bd64-4b15-8b1c-b11949e515e6/
│   │   │                   │   └── unc.edu.d5a281fd-c004-477f-af62-c55fe20f1dee.1538274.rsem.genes.normalized_results
│   │   │                   ├── c6fc1852-81eb-484b-9911-1f058ef471d4/
│   │   │                   │   └── unc.edu.9146c99d-fa73-433d-8460-f2587ce674bb.1539645.rsem.genes.normalized_results
│   │   │                   ├── c76131e0-2cff-489f-b8b6-4e72d0faa58f/
│   │   │                   │   └── unc.edu.e623cbaa-d406-4c82-b9e8-21acfc9e630a.1535093.rsem.genes.normalized_results
│   │   │                   ├── c7fcd219-81ae-4879-8e0f-25e998787007/
│   │   │                   │   └── unc.edu.b147bdcd-f5b6-41be-bca4-3ef7efcb9ec6.1540710.rsem.genes.normalized_results
│   │   │                   ├── c82c9547-d2fc-49da-962c-b6efa2d62b8b/
│   │   │                   │   └── unc.edu.eab1e09d-1ca3-484d-95d8-9fd5fa857f3d.1535423.rsem.genes.normalized_results
│   │   │                   ├── c8dbfac8-d1e5-4195-b76b-743ca1c0464e/
│   │   │                   │   └── unc.edu.60003a9d-4fed-4131-839d-13d72f6d9c28.1542987.rsem.genes.normalized_results
│   │   │                   ├── cdf18c04-47f3-42b1-9ff9-4f7c77cee1b2/
│   │   │                   │   └── unc.edu.7a904020-5345-4d1f-8493-8dd07d45faa3.1540665.rsem.genes.normalized_results
│   │   │                   ├── cdf8362e-78cd-4b97-a0a4-61e68c20397d/
│   │   │                   │   └── unc.edu.051cda00-0007-4e35-9044-fd0c03c8ed4b.1545352.rsem.genes.normalized_results
│   │   │                   ├── ce72ea3f-ec9f-4469-9084-1ab4d3daddaf/
│   │   │                   │   └── unc.edu.6251a0df-d7ff-4a1b-9aa6-7d12ea04bd2c.1541980.rsem.genes.normalized_results
│   │   │                   ├── d17e28e6-e414-4d37-9967-62e223cd5cb7/
│   │   │                   │   └── unc.edu.0cbec58e-f95e-4c60-a85d-210dc56bdf3c.1545137.rsem.genes.normalized_results
│   │   │                   ├── d261ba1c-66b6-4975-b3fc-0336b393a7ed/
│   │   │                   │   └── unc.edu.e99614f9-51d8-4096-83af-8effd5266881.1535024.rsem.genes.normalized_results
│   │   │                   ├── d7eb60ce-a52e-4794-afe6-8ba74c3b744d/
│   │   │                   │   └── unc.edu.26200b50-c40c-4e09-89c4-083b873bcf25.1544812.rsem.genes.normalized_results
│   │   │                   ├── dae1f8d5-19c1-44d9-9c76-f7b78ee41f78/
│   │   │                   │   └── unc.edu.95e1423d-5a12-49cf-841d-1521593a874f.1539936.rsem.genes.normalized_results
│   │   │                   ├── dc5f9d09-0812-4346-aad6-122574dce6ad/
│   │   │                   │   └── unc.edu.098b8eb6-2e55-4628-8eca-e1068e74d9e6.1545218.rsem.genes.normalized_results
│   │   │                   ├── dd6d785e-6286-4b01-9aa8-0631ba5295f7/
│   │   │                   │   └── unc.edu.a748d693-fae0-4fb6-ab1e-a347b4e9b7d2.1539373.rsem.genes.normalized_results
│   │   │                   ├── dd8eabad-fd1d-4052-bd97-d95c357b418e/
│   │   │                   │   └── unc.edu.9b9ba1cf-67be-4d74-90c5-fd86f4a5317f.1539513.rsem.genes.normalized_results
│   │   │                   ├── e238a46f-ebfa-48ab-b1ad-0012973863fe/
│   │   │                   │   └── unc.edu.adafa15c-5834-427e-bc93-24d3c4f775a9.1539317.rsem.genes.normalized_results
│   │   │                   ├── e2e58c27-2693-4709-a941-0fe9b2ded69b/
│   │   │                   │   └── unc.edu.6245a56e-eec6-4e7b-b9ef-bf0d1a3dcf36.1542454.rsem.genes.normalized_results
│   │   │                   ├── e3558dc0-3088-4ed4-8467-0676b7981aac/
│   │   │                   │   └── unc.edu.049eb561-95ee-4584-b9eb-0715c80e0a95.1545368.rsem.genes.normalized_results
│   │   │                   ├── e3b09881-501e-4d2a-ad30-58bdce5f01fd/
│   │   │                   │   └── unc.edu.eb455c55-74ac-4303-b149-475ffe21e3c6.1534310.rsem.genes.normalized_results
│   │   │                   ├── e3c921c2-3d65-49ed-9551-5b0b506496a6/
│   │   │                   │   └── unc.edu.4e8e7e01-95a7-4724-bbc5-91436d80d0f7.1542732.rsem.genes.normalized_results
│   │   │                   ├── e4036fae-6f6f-4061-85c8-bd9c8843ea5f/
│   │   │                   │   └── unc.edu.d694ad12-0ae4-4bee-9f7f-0c6adf5bf09d.1538298.rsem.genes.normalized_results
│   │   │                   ├── e4497d09-08ab-43f9-a726-d4f608a6eee0/
│   │   │                   │   └── unc.edu.c0c714ac-aa74-4702-8c3b-704f6e549276.1538464.rsem.genes.normalized_results
│   │   │                   ├── e45862b2-1144-4ad3-8d6e-6ea799c20a6d/
│   │   │                   │   └── unc.edu.49280503-5136-4c10-8e42-061abbb6fa05.1543573.rsem.genes.normalized_results
│   │   │                   ├── e771caaf-aa86-4264-bc8c-730e5f1aa67b/
│   │   │                   │   └── unc.edu.6a85fda0-3e2d-4bd8-ba44-5ce821c39504.1540438.rsem.genes.normalized_results
│   │   │                   ├── e9473bc9-c6dc-4fd8-b79c-4e74ed257c9a/
│   │   │                   │   └── unc.edu.a7433808-7fb3-4909-92ae-2d74b32886b0.1539383.rsem.genes.normalized_results
│   │   │                   ├── ea3b51e2-48e4-440a-88c5-218c82915813/
│   │   │                   │   └── unc.edu.2b467bcc-e33f-4209-92c0-dcff843027ea.1544577.rsem.genes.normalized_results
│   │   │                   ├── eed90292-6958-4ca6-bb39-e808ab9ffe68/
│   │   │                   │   └── unc.edu.76ad0a38-a2a2-4533-8baf-5f94c0c59a02.1540944.rsem.genes.normalized_results
│   │   │                   ├── f08280b7-c6b4-4192-87c6-7ff6b6107cb9/
│   │   │                   │   └── unc.edu.68de1b36-afde-4fb9-bd5a-38037cd7df11.1540622.rsem.genes.normalized_results
│   │   │                   ├── f0f38c45-e69e-4e62-add2-833d227706fc/
│   │   │                   │   └── unc.edu.9afb2af1-ea34-41ad-8a5d-5f24df2aba0b.1539889.rsem.genes.normalized_results
│   │   │                   ├── f27dbcfd-13e7-4309-b74a-a1c68522ac4c/
│   │   │                   │   └── unc.edu.ff4d089b-8f65-46f1-b3bc-dab1271725fb.1531870.rsem.genes.normalized_results
│   │   │                   ├── f27fb706-3d2c-4d99-9fc1-57d5f9274cc7/
│   │   │                   │   └── unc.edu.497fcc98-1eeb-4696-88eb-22fc99627695.1542705.rsem.genes.normalized_results
│   │   │                   ├── f3675736-ce1d-44c6-9024-918cc188f69d/
│   │   │                   │   └── unc.edu.57e8e300-2cd1-4af1-a84c-02e1d3fc3555.1542961.rsem.genes.normalized_results
│   │   │                   ├── f764f722-688c-406f-886f-70d1ec7a6ece/
│   │   │                   │   └── unc.edu.11a0e909-11e7-40f3-be04-5bd2143ee6ab.1545093.rsem.genes.normalized_results
│   │   │                   ├── f77bb46c-0ef4-44ea-a9bd-713f12ff4e37/
│   │   │                   │   └── unc.edu.3053a2c5-4426-4d56-85b0-50567f1e81c9.1544454.rsem.genes.normalized_results
│   │   │                   ├── fa272d89-6271-48be-8a6a-913a8f6d8d58/
│   │   │                   │   └── unc.edu.addc558d-d718-4f50-a0dc-92f7c3341f61.1538872.rsem.genes.normalized_results
│   │   │                   └── fcaa30b7-1480-43d1-8a05-9ee011c03ef8/
│   │   │                       └── unc.edu.3a5d8c95-260e-471a-bdf8-2fa489a069d8.1542770.rsem.genes.normalized_results
│   │   ├── MANIFEST.txt
│   │   ├── NAMESPACE
│   │   ├── R/
│   │   │   └── kmeans.R
│   │   ├── add_dataset.js
│   │   ├── assign_tool_access.js
│   │   ├── convert_tcga_molecular_v2.R
│   │   ├── default_genesets.json
│   │   ├── default_tools.json
│   │   ├── gene_minTSS_scaled.json
│   │   ├── initiate_db.js
│   │   ├── man/
│   │   │   └── kmeans.Rd
│   │   ├── oncoscape.Rproj
│   │   ├── tcga_clinical_lookup.json
│   │   ├── tcga_conversion.js
│   │   ├── tcga_molecular_lookup.json
│   │   └── tool_requirements.json
│   └── oncoscape_0.1.0.tgz
├── docker-entrypoint.sh
├── docker-kong.template
├── docker-nginx.template
├── docker-supervisord.conf
├── documentation/
│   ├── .babelrc
│   ├── .bowerrc
│   ├── .editorconfig
│   ├── .gitattributes
│   ├── .gitignore
│   ├── .yo-rc.json
│   ├── app/
│   │   ├── index.html
│   │   ├── markerspatients.html
│   │   ├── partials/
│   │   │   ├── footer.p
│   │   │   └── header.p
│   │   ├── pathways.html
│   │   ├── pca.html
│   │   ├── robots.txt
│   │   ├── scripts/
│   │   │   ├── oncoscape.js
│   │   │   └── oncoscapeHomepage.js
│   │   ├── spreadsheet.html
│   │   ├── styles/
│   │   │   └── oncoscape.css
│   │   ├── survival.html
│   │   └── timelines.html
│   ├── bower.json
│   ├── dist/
│   │   ├── index.html
│   │   ├── markerspatients.html
│   │   ├── pathways.html
│   │   ├── pca.html
│   │   ├── robots.txt
│   │   ├── scripts/
│   │   │   ├── oncoscape.js
│   │   │   └── oncoscapeHomepage.js
│   │   ├── spreadsheet.html
│   │   ├── styles/
│   │   │   └── oncoscape.css
│   │   ├── survival.html
│   │   └── timelines.html
│   ├── gulpfile.babel.js
│   ├── markerspatients.html
│   ├── package.json
│   └── test/
│       ├── index.html
│       └── spec/
│           └── test.js
├── logos.psd
├── ms-bu.js
├── server/
│   ├── HugoGenes.json
│   ├── add_dataset.js
│   ├── app.db.js
│   ├── app.js
│   ├── app.middleware.js
│   ├── app.permissions.js
│   ├── app.query.js
│   ├── app.routes.js
│   ├── fileUpload.js
│   ├── kong_configure.js
│   ├── models/
│   │   ├── file.js
│   │   ├── irb.js
│   │   ├── lookup.js
│   │   ├── permission.js
│   │   ├── project.js
│   │   ├── publicprojects.js
│   │   └── user.js
│   ├── package.json
│   ├── test.js
│   └── tool_requirements.json
└── tcga_molecular_lookup.json
Copy disabled (too large) Download .txt
Showing preview only (16,360K chars total). Download the full file to get everything.
SYMBOL INDEX (42751 symbols across 187 files)

FILE: admin/config/github-deploy/index.js
  constant REPO_NAME_RE (line 4) | const REPO_NAME_RE = /Push {2}URL: https:\/\/github\.com\/.*\/(.*)\.git/;
  function getWebpackConfigModule (line 6) | function getWebpackConfigModule() {
  function getRepoName (line 16) | function getRepoName(remoteName) {
  function stripTrailing (line 29) | function stripTrailing(str, char) {
  function safeUrl (line 52) | function safeUrl(url) {

FILE: admin/config/helpers.js
  function hasProcessFlag (line 9) | function hasProcessFlag(flag) {
  function isWebpackDevServer (line 13) | function isWebpackDevServer() {
  function root (line 17) | function root(args) {

FILE: admin/config/html-elements-plugin/index.js
  function HtmlElementsPlugin (line 2) | function HtmlElementsPlugin(locations) {
  constant RE_ENDS_WITH_BS (line 29) | const RE_ENDS_WITH_BS = /\/$/;
  function createTag (line 42) | function createTag(tagName, attrMap, publicPath) {
  function getHtmlElementString (line 92) | function getHtmlElementString(dataSource, publicPath) {

FILE: admin/config/spec-bundle.js
  function requireAll (line 57) | function requireAll(requireContext) {

FILE: admin/config/webpack.common.js
  constant HMR (line 22) | const HMR = helpers.hasProcessFlag('hot');
  constant METADATA (line 23) | const METADATA = {

FILE: admin/config/webpack.dev.js
  constant ENV (line 18) | const ENV = process.env.ENV = process.env.NODE_ENV = 'development';
  constant HOST (line 19) | const HOST = process.env.HOST || 'localhost';
  constant PORT (line 20) | const PORT = process.env.PORT || 9000;
  constant HMR (line 21) | const HMR = helpers.hasProcessFlag('hot');
  constant METADATA (line 22) | const METADATA = webpackMerge(commonConfig({env: ENV}).metadata, {

FILE: admin/config/webpack.github-deploy.js
  constant GIT_REMOTE_NAME (line 14) | const GIT_REMOTE_NAME = 'origin';
  constant COMMIT_MESSAGE (line 15) | const COMMIT_MESSAGE = 'Updates';
  constant GH_REPO_NAME (line 16) | const GH_REPO_NAME = ghDeploy.getRepoName(GIT_REMOTE_NAME);
  constant METADATA (line 18) | const METADATA = webpackMerge(webpackConfig.metadata, {

FILE: admin/config/webpack.prod.js
  constant ENV (line 23) | const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
  constant HOST (line 24) | const HOST = process.env.HOST || 'localhost';
  constant PORT (line 25) | const PORT = process.env.PORT || 8080;
  constant METADATA (line 26) | const METADATA = webpackMerge(commonConfig({env: ENV}).metadata, {

FILE: admin/config/webpack.test.js
  constant ENV (line 16) | const ENV = process.env.ENV = process.env.NODE_ENV = 'test';

FILE: admin/src/app/app.container.ts
  class AppContainer (line 12) | class AppContainer implements OnInit {
    method constructor (line 13) | constructor(
    method ngOnInit (line 18) | ngOnInit() {

FILE: admin/src/app/app.module.ts
  constant APP_PROVIDERS (line 21) | const APP_PROVIDERS = [
  type StoreType (line 26) | type StoreType = {
  class AppModule (line 52) | class AppModule {
    method constructor (line 54) | constructor(public appRef: ApplicationRef, public appState: State) {
    method hmrOnInit (line 58) | hmrOnInit(store: StoreType) {
    method hmrOnDestroy (line 74) | hmrOnDestroy(store: StoreType) {
    method hmrAfterDestroy (line 88) | hmrAfterDestroy(store: StoreType) {

FILE: admin/src/app/app.resolver.ts
  class DataResolver (line 7) | class DataResolver implements Resolve<any> {
    method constructor (line 8) | constructor() {
    method resolve (line 11) | resolve(route: ActivatedRouteSnapshot, state: RouterStateSnapshot) {
  constant APP_RESOLVER_PROVIDERS (line 17) | const APP_RESOLVER_PROVIDERS = [

FILE: admin/src/app/components/alert/alert.component.ts
  type AlertModel (line 4) | interface AlertModel {
  class Alert (line 18) | class Alert implements OnChanges {
    method ngOnChanges (line 24) | ngOnChanges(changes: any) {
    method show (line 47) | show(): void {
    method hide (line 52) | hide(): void {
    method toggle (line 57) | toggle(): void {

FILE: admin/src/app/components/breadcrumb/crumb.component.ts
  class Crumb (line 10) | class Crumb {
    method constructor (line 15) | constructor(
    method buildCrumb (line 31) | buildCrumb(url: string): void {
    method getCrumbProperty (line 41) | getCrumbProperty(url: string, property: string): string {
    method hasCrumbProperty (line 45) | hasCrumbProperty(url: string, property: string): boolean {
    method checkUrl (line 49) | private checkUrl(url: string, count: number = 1): string {

FILE: admin/src/app/components/breadcrumb/crumb.service.ts
  type CrumbTreeModel (line 4) | interface CrumbTreeModel {
  type CrumbTreeItem (line 8) | interface CrumbTreeItem {
  class CrumbService (line 15) | class CrumbService {
    method addCrumbTree (line 18) | addCrumbTree(crumbTree: CrumbTreeModel) {
    method getUrlProperty (line 22) | getUrlProperty(url: string, property: string): string {
    method hasUrlProperty (line 26) | hasUrlProperty(url: string, property: string): boolean {
    method hasUrl (line 30) | hasUrl(url: string): boolean {

FILE: admin/src/app/components/combobox/combo.component.ts
  class ComboBox (line 11) | class ComboBox implements OnInit, OnDestroy {
    method ngOnInit (line 24) | ngOnInit() {
    method ngOnDestroy (line 40) | ngOnDestroy() {
    method onOut (line 44) | onOut(event: Event) {
    method onList (line 48) | onList(event: MouseEvent) {
    method onSelect (line 55) | onSelect(entry: any) {

FILE: admin/src/app/components/footer/footer.component.ts
  type FooterModel (line 3) | interface FooterModel {
  class Footer (line 13) | class Footer {

FILE: admin/src/app/components/header/header.component.ts
  class Header (line 9) | class Header {
    method constructor (line 14) | constructor(@Inject(DOCUMENT) private _document) { }
    method toggle (line 16) | toggle(event: MouseEvent): void {

FILE: admin/src/app/components/index.ts
  class ComponentsModule (line 31) | class ComponentsModule { }

FILE: admin/src/app/components/modal/modal.component.ts
  class Modal (line 12) | class Modal implements AfterViewInit {
    method constructor (line 30) | constructor(private _ref: ElementRef) { }
    method ngAfterViewInit (line 32) | ngAfterViewInit() {
    method show (line 52) | show() {
    method hide (line 56) | hide() {
    method onAction (line 60) | onAction(event: MouseEvent) {

FILE: admin/src/app/components/sidebar/sidebar.component.ts
  type SideBarModel (line 3) | interface SideBarModel {
  class SideBar (line 17) | class SideBar {
    method sideBarItem (line 21) | sideBarItem(item: SideBarModel) {

FILE: admin/src/app/components/smallbox/smallbox.component.ts
  type SmallBoxModel (line 3) | interface SmallBoxModel {
  class SmallBox (line 15) | class SmallBox {

FILE: admin/src/app/containers/+admin/acls/acls.container.ts
  class AclsContainer (line 32) | class AclsContainer extends Container implements OnInit, OnDestroy {
    method constructor (line 40) | constructor(
    method ngOnInit (line 48) | ngOnInit() {
    method ngOnDestroy (line 57) | ngOnDestroy() {
    method getAcls (line 62) | private getAcls() {

FILE: admin/src/app/containers/+admin/admin.container.ts
  class AdminContainer (line 14) | class AdminContainer extends Container implements OnInit {
    method constructor (line 22) | constructor(
    method ngOnInit (line 31) | ngOnInit() {
    method signOut (line 53) | signOut(event: MouseEvent): void {
    method defineUser (line 60) | private defineUser(): void {
    method createSideBar (line 65) | private createSideBar(): void {
    method createCrumb (line 70) | private createCrumb(): void {

FILE: admin/src/app/containers/+admin/admin.module.ts
  class AdminModule (line 28) | class AdminModule {
    method constructor (line 30) | constructor()  {

FILE: admin/src/app/containers/+admin/admin.routes.ts
  constant ROUTES (line 15) | const ROUTES: Routes = [
  constant ROUTING (line 69) | const ROUTING: ModuleWithProviders = RouterModule.forChild(ROUTES);

FILE: admin/src/app/containers/+admin/apis/apis.container.ts
  class ApisContainer (line 33) | class ApisContainer extends Container implements OnInit, OnDestroy {
    method constructor (line 43) | constructor(
    method ngOnInit (line 51) | ngOnInit() {
    method ngOnDestroy (line 68) | ngOnDestroy() {
    method onSearch (line 72) | onSearch(event: MouseEvent) {
    method onPrevious (line 83) | onPrevious(event: MouseEvent) {
    method onNext (line 88) | onNext(event: MouseEvent) {
    method onDelete (line 102) | onDelete(event: MouseEvent, id: string, name: string) {
    method goToNewApi (line 127) | goToNewApi(event: MouseEvent) {
    method getApis (line 133) | private getApis(params: ApiGetParameters = {}) {

FILE: admin/src/app/containers/+admin/apis/edit.container.ts
  class EditApiContainer (line 21) | class EditApiContainer extends Container implements OnInit, OnDestroy {
    method constructor (line 27) | constructor(
    method ngOnInit (line 37) | ngOnInit() {
    method ngOnDestroy (line 66) | ngOnDestroy() {
    method save (line 70) | save() {
    method cancel (line 101) | cancel(event: MouseEvent) {
    method reset (line 107) | reset(event: MouseEvent) {
    method cleanModel (line 113) | private cleanModel() {

FILE: admin/src/app/containers/+admin/apis/new.container.ts
  class NewApiContainer (line 21) | class NewApiContainer extends Container implements OnInit {
    method constructor (line 27) | constructor(
    method ngOnInit (line 36) | ngOnInit() {
    method save (line 58) | save() {
    method cancel (line 98) | cancel(event: MouseEvent) {
    method reset (line 104) | reset(event: MouseEvent) {
    method cleanModel (line 110) | private cleanModel() {

FILE: admin/src/app/containers/+admin/apis/plugs.container.ts
  class ApiPlugsContainer (line 32) | class ApiPlugsContainer extends Container implements OnInit, OnDestroy {
    method constructor (line 41) | constructor(
    method ngOnInit (line 50) | ngOnInit() {
    method ngOnDestroy (line 70) | ngOnDestroy() {
    method onSearch (line 74) | onSearch(event: MouseEvent) {
    method onPrevious (line 85) | onPrevious(event: MouseEvent) {
    method onNext (line 90) | onNext(event: MouseEvent) {
    method getPlugs (line 104) | private getPlugs(api: string, params: PluginsGetParameters = {}) {

FILE: admin/src/app/containers/+admin/cluster/cluster.container.ts
  class ClusterContainer (line 32) | class ClusterContainer extends Container implements OnInit, OnDestroy {
    method constructor (line 39) | constructor(
    method ngOnInit (line 47) | ngOnInit() {
    method ngOnDestroy (line 55) | ngOnDestroy() {
    method getCluster (line 60) | private getCluster() {

FILE: admin/src/app/containers/+admin/consumers/consumers.container.ts
  class ConsumersContainer (line 33) | class ConsumersContainer extends Container implements OnInit, OnDestroy {
    method constructor (line 43) | constructor(
    method ngOnInit (line 51) | ngOnInit() {
    method ngOnDestroy (line 69) | ngOnDestroy() {
    method onSearch (line 73) | onSearch(event: MouseEvent) {
    method onPrevious (line 84) | onPrevious(event: MouseEvent) {
    method onNext (line 89) | onNext(event: MouseEvent) {
    method onDelete (line 103) | onDelete(event: MouseEvent, id: string, name: string) {
    method goToNewConsumer (line 128) | goToNewConsumer(event: MouseEvent) {
    method getConsumers (line 134) | private getConsumers(params: ConsumerGetParameters = {}) {

FILE: admin/src/app/containers/+admin/consumers/edit.container.ts
  class EditConsumerContainer (line 21) | class EditConsumerContainer extends Container implements OnInit, OnDestr...
    method constructor (line 27) | constructor(
    method ngOnInit (line 37) | ngOnInit() {
    method ngOnDestroy (line 60) | ngOnDestroy() {
    method generateUUID (line 64) | generateUUID(event: MouseEvent) {
    method save (line 70) | save() {
    method cancel (line 101) | cancel(event: MouseEvent) {
    method reset (line 107) | reset(event: MouseEvent) {
    method cleanModel (line 113) | private cleanModel() {

FILE: admin/src/app/containers/+admin/consumers/new.container.ts
  class NewConsumerContainer (line 21) | class NewConsumerContainer extends Container implements OnInit {
    method constructor (line 27) | constructor(
    method ngOnInit (line 36) | ngOnInit() {
    method generateUUID (line 52) | generateUUID(event: MouseEvent) {
    method save (line 58) | save() {
    method cancel (line 98) | cancel(event: MouseEvent) {
    method reset (line 104) | reset(event: MouseEvent) {
    method cleanModel (line 110) | private cleanModel() {

FILE: admin/src/app/containers/+admin/dashboard/dashboard.container.ts
  class DashboardContainer (line 21) | class DashboardContainer extends Container implements OnInit, OnDestroy {
    method constructor (line 26) | constructor(
    method ngOnInit (line 34) | ngOnInit() {
    method ngOnDestroy (line 42) | ngOnDestroy() {
    method statusSubscription (line 46) | private statusSubscription(): void {
    method kongSubscription (line 107) | private kongSubscription(): void {

FILE: admin/src/app/containers/+admin/plugins/details.container.ts
  class PluginDetailContainer (line 19) | class PluginDetailContainer extends Container implements OnInit, OnDestr...
    method constructor (line 22) | constructor(
    method ngOnInit (line 30) | ngOnInit() {
    method ngOnDestroy (line 46) | ngOnDestroy() {

FILE: admin/src/app/containers/+admin/plugins/forms/control.base.ts
  type ControlSignature (line 4) | interface ControlSignature<T> {
  class ControlBase (line 18) | class ControlBase<ControlValue> {
    method constructor (line 30) | constructor(options?: ControlSignature<ControlValue>) {

FILE: admin/src/app/containers/+admin/plugins/forms/form.manager.ts
  type FormSettings (line 16) | interface FormSettings {
  type DynamicFormSettings (line 27) | interface DynamicFormSettings {
  type Manager (line 31) | interface Manager {
  constant FORM_SETTINGS (line 37) | const FORM_SETTINGS: DynamicFormSettings = <DynamicFormSettings>{
  class FormManager (line 2262) | class FormManager {
    method description (line 2265) | set description(settings: FormSettings) {
    method description (line 2269) | get description(): FormSettings {
    method init (line 2273) | init(settings: FormSettings): Manager {
    method createForm (line 2286) | createForm(controls: Array<ControlBase<any>>): FormGroup {
    method createModel (line 2296) | createModel() {

FILE: admin/src/app/containers/+admin/plugins/forms/form.service.ts
  class FormService (line 9) | class FormService {
    method create (line 12) | create(form: string | FormSettings): void {
    method updateModel (line 25) | updateModel(form: FormGroup, options?: any): void {

FILE: admin/src/app/containers/+admin/plugins/new.consumer.container.ts
  class NewConsumerApiContainer (line 19) | class NewConsumerApiContainer extends Container implements OnInit, OnDes...
    method constructor (line 28) | constructor(
    method ngOnInit (line 38) | ngOnInit() {
    method ngOnDestroy (line 62) | ngOnDestroy() {
    method reset (line 66) | reset(event: MouseEvent) {
    method cancel (line 72) | cancel(event: MouseEvent) {
    method save (line 78) | save() {
    method search (line 122) | search(value: string) {

FILE: admin/src/app/containers/+admin/plugins/new.plugin.container.ts
  class NewPluginContainer (line 20) | class NewPluginContainer extends Container implements OnInit, OnDestroy {
    method constructor (line 32) | constructor(
    method ngOnInit (line 43) | ngOnInit() {
    method ngOnDestroy (line 71) | ngOnDestroy() {
    method reset (line 75) | reset(event: MouseEvent) {
    method cancel (line 81) | cancel(event: MouseEvent) {
    method upload (line 87) | upload(data: FileUpload, controlKey: string) {
    method preview (line 97) | preview(data: FilePreview, controlKey: string) {
    method save (line 115) | save() {
    method search (line 157) | search(value: string) {

FILE: admin/src/app/containers/+admin/plugins/plugins.container.ts
  class PluginsContainer (line 17) | class PluginsContainer extends Container implements OnInit, OnDestroy {
    method constructor (line 21) | constructor(
    method ngOnInit (line 29) | ngOnInit() {
    method ngOnDestroy (line 57) | ngOnDestroy() {

FILE: admin/src/app/containers/container.module.ts
  class ContainerModule (line 13) | class ContainerModule {
    method constructor (line 14) | constructor()  {

FILE: admin/src/app/containers/container.routes.ts
  constant ROUTES (line 7) | const ROUTES: Routes = [
  constant ROUTING (line 13) | const ROUTING: ModuleWithProviders = RouterModule.forRoot(ROUTES, { useH...

FILE: admin/src/app/containers/home/home.container.ts
  class HomeContainer (line 14) | class HomeContainer implements OnInit {
    method constructor (line 15) | constructor(private state: State) { }
    method ngOnInit (line 17) | ngOnInit() {

FILE: admin/src/app/containers/login/login.container.ts
  class LoginContainer (line 20) | class LoginContainer implements OnInit {
    method constructor (line 24) | constructor(
    method ngOnInit (line 32) | ngOnInit() {
    method onSubmit (line 43) | onSubmit(form: FormControl) {
  class LoginGuard (line 75) | class LoginGuard implements CanActivate {
    method constructor (line 76) | constructor(
    method canActivate (line 82) | canActivate() {
    method loginAccess (line 99) | private loginAccess(): Observable<boolean> {

FILE: admin/src/app/core/configurator.ts
  type Options (line 13) | interface Options {
  class Configurator (line 24) | class Configurator {
    method constructor (line 27) | constructor( @Inject(APP_CONFIG) options: Options) {
    method setOption (line 31) | setOption(name: string, value: any): void {
    method getOption (line 42) | getOption(name: string, defaults: any = null): any {
    method getOptionTree (line 46) | getOptionTree(rootKey: string, fromRoot: boolean = true): any {
    method options (line 60) | get options(): Options {
    method options (line 64) | set options(opt: Options) {
    method hasOption (line 74) | hasOption(name: string): boolean {
    method _flat (line 95) | private _flat(config: any, key: string = '') {

FILE: admin/src/app/core/container.ts
  method constructor (line 11) | constructor() {
  method changeDetection (line 23) | changeDetection(fn: Function, args?: Array<any>, context?: Object): void {
  method subscriptions (line 34) | set subscriptions(value: Subscription) {
  method clean (line 38) | clean(): void {

FILE: admin/src/app/core/descriptor.ts
  method constructor (line 20) | constructor() {
  method state (line 28) | set state(value) {
  method state (line 36) | get state() {
  method observe (line 46) | observe(): Observable<any> {
  method event (line 55) | event(): EventEmitter<any> {
  method setProp (line 66) | setProp(key: string, value: any): void {
  method getProp (line 78) | getProp(key?: string): any {
  method resetProps (line 85) | resetProps(): void {

FILE: admin/src/app/core/json.formatter.ts
  function escapeString (line 13) | function escapeString(str: string): string {
  function getObjectName (line 22) | function getObjectName(object: Object): string {
  function getType (line 45) | function getType(object: Object): string {
  function getValuePreview (line 53) | function getValuePreview(object: Object, value: string): string {
  function getPreview (line 74) | function getPreview(object: string): string {
  function cssClass (line 89) | function cssClass(className: string): string {
  function createElement (line 97) | function createElement(type: string, className?: string, content?: Eleme...
  constant DATE_STRING_REGEX (line 113) | const DATE_STRING_REGEX = /(^\d{1,4}[\.|\\/|-]\d{1,2}[\.|\\/|-]\d{1,4})(...
  constant PARTIAL_DATE_REGEX (line 115) | const PARTIAL_DATE_REGEX = /\d{2}:\d{2}:\d{2} GMT-\d{4}/;
  constant JSON_DATE_REGEX (line 116) | const JSON_DATE_REGEX = /\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{3}Z/;
  constant MAX_ANIMATED_TOGGLE_ITEMS (line 119) | const MAX_ANIMATED_TOGGLE_ITEMS = 10;
  type JSONFormatterConfiguration (line 124) | interface JSONFormatterConfiguration {
  class JSONFormatter (line 149) | class JSONFormatter {
    method constructor (line 185) | constructor(
    method isOpen (line 207) | private get isOpen(): boolean {
    method isOpen (line 218) | private set isOpen(value: boolean) {
    method isDate (line 225) | private get isDate(): boolean {
    method isUrl (line 235) | private get isUrl(): boolean {
    method isArray (line 242) | private get isArray(): boolean {
    method isObject (line 250) | private get isObject(): boolean {
    method isEmptyObject (line 257) | private get isEmptyObject(): boolean {
    method isEmpty (line 264) | private get isEmpty(): boolean {
    method hasKey (line 272) | private get hasKey(): boolean {
    method constructorName (line 279) | private get constructorName(): string {
    method type (line 287) | private get type(): string {
    method keys (line 295) | private get keys(): string[] {
    method toggleOpen (line 307) | toggleOpen() {
    method getInlinepreview (line 326) | getInlinepreview() {
    method render (line 358) | render(): HTMLDivElement {
    method appendChildern (line 476) | appendChildern(animated: boolean = false) {
    method removeChildren (line 513) | removeChildren(animated: boolean = false) {

FILE: admin/src/app/core/persistence.ts
  constant STORE (line 3) | const STORE = require('store');
  class Persistence (line 12) | class Persistence {
    method set (line 20) | set(key: string, value: any) {
    method get (line 30) | get(key: string) {
    method all (line 39) | all() {
    method delete (line 49) | delete(key: string) {
    method clear (line 56) | clear() {
    method supported (line 66) | supported(): boolean {

FILE: admin/src/app/core/state.ts
  type InternalStateType (line 6) | interface InternalStateType {
  class State (line 11) | class State {
    method constructor (line 15) | constructor() {
    method state (line 22) | get state() {
    method state (line 26) | set state(value) {
    method get (line 30) | get(prop?: any) {
    method set (line 34) | set(prop: string, value: any) {
    method has (line 42) | has(prop?: string): boolean {
    method observe (line 46) | observe(): Observable<any> {
    method _clone (line 50) | private _clone(object: InternalStateType) {

FILE: admin/src/app/environment.ts
  constant PROVIDERS (line 8) | let PROVIDERS: any[] = [
  constant APP_CONFIG (line 12) | const APP_CONFIG = new OpaqueToken('app.config');
  constant ENV_PROVIDERS (line 69) | const ENV_PROVIDERS = [

FILE: admin/src/app/shared/adapters/driver.ts
  constant ADAPTER (line 7) | const ADAPTER = 'ADAPTER';
  class Driver (line 16) | class Driver {
    method constructor (line 31) | constructor(@Inject(Injector) private _injector: Injector) {
    method adapter (line 40) | get adapter() {
    method _setupAdapter (line 50) | private _setupAdapter(): void {

FILE: admin/src/app/shared/adapters/index.ts
  constant ADAPTER_PROVIDER (line 10) | const ADAPTER_PROVIDER: any[] = [

FILE: admin/src/app/shared/adapters/rest.adapter.ts
  type AdapterRestSignature (line 11) | interface AdapterRestSignature {
  type ResourceResponse (line 25) | interface ResourceResponse<ResourceModel> {
  class RestAdapter (line 42) | class RestAdapter implements AdapterRestSignature {
    method constructor (line 43) | constructor(@Inject(Http) private _http: Http) { }
    method _toResponse (line 53) | protected _toResponse(response: Response): ResourceResponse<any> {
    method _handleError (line 78) | protected _handleError(error: any): ErrorObservable {
    method request (line 93) | request(url: string | Request, options?: RequestOptionsArgs): Observab...
    method get (line 104) | get(path: string, params?: RequestOptionsArgs): Observable<ResourceRes...
    method post (line 117) | post(path: string, params?: any, options?: RequestOptionsArgs): Observ...
    method put (line 130) | put(path: string, params: any, options: RequestOptionsArgs): Observabl...
    method delete (line 141) | delete(path: string, params: RequestOptionsArgs): Observable<ResourceR...
    method patch (line 153) | patch(path: string, body?: any, options?: RequestOptionsArgs): Observa...

FILE: admin/src/app/shared/constants.ts
  constant STORE (line 1) | const STORE = require('store');
  constant SYMBOLS (line 3) | const SYMBOLS = {
  type PaginateModel (line 34) | interface PaginateModel {
  function paginate (line 43) | function paginate(size: number, current: number = 1, limit: number = 10)...
  function makeSymbolPath (line 56) | function makeSymbolPath(symbols: String[]): string {
  function getLocalStorage (line 60) | function getLocalStorage(key?: string): any {
  function uuid (line 64) | function uuid() {
  function humanizeBytes (line 87) | function humanizeBytes(bytes: number): string {

FILE: admin/src/app/shared/core.module.ts
  class CoreModule (line 12) | class CoreModule {
    method forRoot (line 14) | static forRoot(): ModuleWithProviders {
    method constructor (line 25) | constructor (@Optional() @SkipSelf() parentModule: CoreModule) {

FILE: admin/src/app/shared/directives/fileselect.directive.ts
  type FilePreview (line 12) | interface FilePreview {
  class FileSelect (line 21) | class FileSelect {
    method options (line 31) | get options(): any {
    method options (line 36) | set options(value: any) {
    method constructor (line 41) | constructor(public el: ElementRef) {
    method filterFilesByExtension (line 70) | filterFilesByExtension(): void {
    method onChange (line 86) | onChange(): void {

FILE: admin/src/app/shared/directives/size.directive.ts
  class Size (line 6) | class Size implements AfterViewInit {
    method constructor (line 10) | constructor(private _el: ElementRef) {}
    method ngAfterViewInit (line 12) | ngAfterViewInit() {
    method setElementMinHeight (line 18) | setElementMinHeight(min: number) {
    method listenForBodyChanges (line 22) | listenForBodyChanges() {
    method detectBodyHeight (line 28) | private detectBodyHeight(): number {

FILE: admin/src/app/shared/directives/tooltip.directive.ts
  class ToolTipDirective (line 6) | class ToolTipDirective {
    method constructor (line 10) | constructor(private el: ElementRef, private renderer: Renderer) { }
    method placement (line 12) | set placement(place: string) {
    method tooltip (line 16) | set tooltip(msg: string) {
    method onMouseEnter (line 20) | onMouseEnter() {
    method onMouseLeave (line 25) | onMouseLeave() {

FILE: admin/src/app/shared/models/apis.model.ts
  type ApisModelResource (line 5) | interface ApisModelResource {
  class ApisModel (line 16) | class ApisModel extends BaseModel {
    method constructor (line 28) | constructor(data?: ApisModelResource | BaseModelCollection<ApisModelRe...
    method _setCollection (line 38) | private _setCollection(collection: BaseModelCollection<ApisModelResour...

FILE: admin/src/app/shared/models/base.model.ts
  type BaseModelCollection (line 5) | interface BaseModelCollection<ResourceModelCollection> {
  method constructor (line 16) | constructor() {
  method hasAttribute (line 20) | hasAttribute(attribute: string): boolean {
  method setAttribute (line 24) | setAttribute(key: string, value: any): void {
  method getAttribute (line 29) | getAttribute(key: string): any {
  method removeAttribute (line 33) | removeAttribute(key: string): boolean {
  method observe (line 37) | observe(): Observable<any> {

FILE: admin/src/app/shared/models/consumers.model.ts
  type ConsumerModelResource (line 5) | interface ConsumerModelResource {
  class ConsumersModel (line 13) | class ConsumersModel extends BaseModel {
    method constructor (line 23) | constructor(data?: ConsumerModelResource | BaseModelCollection<Consume...
    method _setCollection (line 33) | private _setCollection(collection: BaseModelCollection<ConsumerModelRe...

FILE: admin/src/app/shared/models/kong.model.ts
  type KongModelTimer (line 4) | interface KongModelTimer {
  type KongModelConfigurationDnsResolver (line 9) | interface KongModelConfigurationDnsResolver {
  type KongModelConfigurationPostgres (line 15) | interface KongModelConfigurationPostgres {
  type KongModelConfigurationCluster (line 22) | interface KongModelConfigurationCluster {
  type KongModelConfigurationDao (line 28) | interface KongModelConfigurationDao {
  type KongModelConfiguration (line 35) | interface KongModelConfiguration {
  type KongModelPlugins (line 77) | interface KongModelPlugins {
  type KongModelResource (line 84) | interface KongModelResource {
  class KongModel (line 95) | class KongModel extends BaseModel {
    method constructor (line 106) | constructor(data?: KongModelResource) {

FILE: admin/src/app/shared/models/menu.model.ts
  type MenuModelItem (line 4) | interface MenuModelItem {
  class MenuModel (line 14) | class MenuModel extends BaseModel {
    method constructor (line 17) | constructor(menu?: Array<MenuModelItem>) {

FILE: admin/src/app/shared/models/plugins.model.ts
  constant PLUGINSDATA (line 6) | const PLUGINSDATA = [
  type SchemaModelResource (line 37) | interface SchemaModelResource {
  type PluginApiModelResource (line 42) | interface PluginApiModelResource {
  class SchemaModel (line 52) | class SchemaModel extends BaseModel {
    method constructor (line 59) | constructor(data?: SchemaModelResource | BaseModelCollection<SchemaMod...
    method _setCollection (line 69) | private _setCollection(collection: BaseModelCollection<SchemaModelReso...
  class PluginApiModel (line 79) | class PluginApiModel extends BaseModel {
    method constructor (line 91) | constructor(data?: PluginApiModelResource | BaseModelCollection<Plugin...
    method _setCollection (line 101) | private _setCollection(collection: BaseModelCollection<PluginApiModelR...

FILE: admin/src/app/shared/models/plugins/acl.model.ts
  class ACLModelConfig (line 3) | class ACLModelConfig extends BaseModel {
  class ACLModel (line 9) | class ACLModel extends BaseModel {

FILE: admin/src/app/shared/models/plugins/basic.model.ts
  class BasicModelConfig (line 3) | class BasicModelConfig extends BaseModel {
  class BasicModel (line 10) | class BasicModel extends BaseModel {

FILE: admin/src/app/shared/models/plugins/bot.model.ts
  class BotModelConfig (line 3) | class BotModelConfig extends BaseModel {

FILE: admin/src/app/shared/models/plugins/correlation.model.ts
  class CorrelationModelConfig (line 3) | class CorrelationModelConfig extends BaseModel {

FILE: admin/src/app/shared/models/plugins/cors.model.ts
  class CorsModelConfig (line 3) | class CorsModelConfig extends BaseModel {

FILE: admin/src/app/shared/models/plugins/hmac.model.ts
  class HMacModelConfig (line 3) | class HMacModelConfig extends BaseModel {
  class HMacModel (line 11) | class HMacModel extends BaseModel {

FILE: admin/src/app/shared/models/plugins/ip.model.ts
  class IPModelConfig (line 3) | class IPModelConfig extends BaseModel {

FILE: admin/src/app/shared/models/plugins/jwt.model.ts
  class JWTModelConfig (line 3) | class JWTModelConfig extends BaseModel {
  class JWTModel (line 13) | class JWTModel extends BaseModel {

FILE: admin/src/app/shared/models/plugins/key.model.ts
  class KeyModelConfig (line 3) | class KeyModelConfig extends BaseModel {
  class KeyModel (line 11) | class KeyModel extends BaseModel {

FILE: admin/src/app/shared/models/plugins/ldap.model.ts
  class LdapModelConfig (line 3) | class LdapModelConfig extends BaseModel {

FILE: admin/src/app/shared/models/plugins/oauth.model.ts
  constant OAUTH_ENDPOINTS (line 3) | const OAUTH_ENDPOINTS = {
  class OAuthModelConfig (line 8) | class OAuthModelConfig extends BaseModel {
  class OAuthModel (line 23) | class OAuthModel extends BaseModel {

FILE: admin/src/app/shared/models/plugins/rate.model.ts
  class RateModelConfig (line 3) | class RateModelConfig extends BaseModel {

FILE: admin/src/app/shared/models/plugins/request.limiting.model.ts
  class RequestSizeLimitingModelConfig (line 3) | class RequestSizeLimitingModelConfig extends BaseModel {

FILE: admin/src/app/shared/models/plugins/request.transformer.model.ts
  class RequestTransformerModelConfig (line 3) | class RequestTransformerModelConfig extends BaseModel {

FILE: admin/src/app/shared/models/plugins/response.limiting.model.ts
  class ResponseRateLimitingModelConfig (line 3) | class ResponseRateLimitingModelConfig extends BaseModel {

FILE: admin/src/app/shared/models/plugins/ssl.model.ts
  class SSLModelConfig (line 3) | class SSLModelConfig extends BaseModel {

FILE: admin/src/app/shared/models/status.model.ts
  type StatusModelResourceDatabase (line 4) | interface StatusModelResourceDatabase {
  type StatusModelResourceServer (line 21) | interface StatusModelResourceServer {
  type StatusModelResource (line 31) | interface StatusModelResource {
  class StatusModel (line 37) | class StatusModel extends BaseModel {
    method constructor (line 41) | constructor(data?: StatusModelResource) {

FILE: admin/src/app/shared/services/acls.service.ts
  class AclsService (line 16) | class AclsService extends Service<RestAdapter> {
    method constructor (line 18) | constructor(inject: Injector, private _configurator: Configurator) {
    method getRoles (line 22) | getRoles(): Observable<any> {
    method _reqOptions (line 29) | private _reqOptions(): RequestOptions {

FILE: admin/src/app/shared/services/apis.service.ts
  type ApiGetParameters (line 14) | interface ApiGetParameters {
  type PlugGetParameters (line 24) | interface PlugGetParameters {
  class ApisService (line 34) | class ApisService extends Service<RestAdapter> {
    method constructor (line 35) | constructor(inject: Injector, private _configurator: Configurator) {
    method apis (line 39) | apis(args?: ApiGetParameters): Observable<ApisModel> {
    method plugins (line 60) | plugins(api: string, args?: PlugGetParameters): Observable<PluginApiMo...
    method get (line 70) | get(id: string): Observable<ApisModel> {
    method add (line 80) | add(model: ApisModel): Observable<ResourceResponse<ApisModelResource>> {
    method update (line 89) | update(model: ApisModel): Observable<ResourceResponse<ApisModelResourc...
    method delete (line 98) | delete(id: string): Observable<ResourceResponse<any>> {
    method insertPlugin (line 105) | insertPlugin(api: string, model: any): Observable<any> {
    method _reqOptions (line 114) | private _reqOptions(): RequestOptions {
    method _cleanModel (line 122) | private _cleanModel(model: ApisModel) {

FILE: admin/src/app/shared/services/auth.service.ts
  type CredentialsBasic (line 15) | interface CredentialsBasic {
  class AuthService (line 21) | class AuthService extends Service<RestAdapter> {
    method constructor (line 27) | constructor(@Inject(Injector) inject: Injector) {
    method login (line 34) | login(credentials: CredentialsBasic): Observable<KongModel> {
    method logout (line 43) | logout(): void {
    method hasLocal (line 48) | hasLocal(): boolean {
    method verify (line 52) | verify(): Observable<KongModel> {
    method _performLogin (line 67) | private _performLogin(persistence: {key: string, user: string}): Obser...

FILE: admin/src/app/shared/services/base.service.ts
  method constructor (line 18) | constructor(@Inject(Injector) private injector: Injector) {
  method _initAdapter (line 30) | private _initAdapter(): void {

FILE: admin/src/app/shared/services/cluster.service.ts
  class ClusterService (line 14) | class ClusterService extends Service<RestAdapter> {
    method constructor (line 16) | constructor(inject: Injector, private _configurator: Configurator) {
    method getCluster (line 20) | getCluster(): Observable<any> {
    method _reqOptions (line 27) | private _reqOptions(): RequestOptions {

FILE: admin/src/app/shared/services/consumers.service.ts
  type ConsumerGetParameters (line 13) | interface ConsumerGetParameters {
  class ConsumerService (line 22) | class ConsumerService extends Service<RestAdapter> {
    method constructor (line 23) | constructor(inject: Injector, private _configurator: Configurator) {
    method consumers (line 27) | consumers(args?: ConsumerGetParameters): Observable<ConsumersModel> {
    method get (line 47) | get(id: string): Observable<ConsumersModel> {
    method add (line 57) | add(model: ConsumersModel): Observable<ResourceResponse<ConsumerModelR...
    method update (line 66) | update(model: ConsumersModel): Observable<ResourceResponse<ConsumerMod...
    method delete (line 75) | delete(id: string): Observable<ResourceResponse<any>> {
    method insertPlugin (line 82) | insertPlugin(consumer: string, plugin: string, model: any): Observable...
    method _reqOptions (line 91) | private _reqOptions(): RequestOptions {
    method _cleanModel (line 99) | private _cleanModel(model: ConsumersModel) {

FILE: admin/src/app/shared/services/guard.service.ts
  class GuardService (line 11) | class GuardService implements CanActivate {
    method constructor (line 12) | constructor(
    method canActivate (line 18) | canActivate() {
    method adminAccess (line 38) | private adminAccess(): Observable<boolean> {

FILE: admin/src/app/shared/services/index.ts
  constant AUTH_PROVIDER (line 15) | const AUTH_PROVIDER: any[] = [

FILE: admin/src/app/shared/services/plugins.service.ts
  type PluginsGetParameters (line 13) | interface PluginsGetParameters {
  class PluginsService (line 23) | class PluginsService extends Service<RestAdapter> {
    method constructor (line 24) | constructor(inject: Injector, private _configurator: Configurator) {
    method plugins (line 28) | plugins(args?: PluginsGetParameters): Observable<any> {
    method enabled (line 48) | enabled(): Observable<any> {
    method schema (line 55) | schema(plugin: string): Observable<SchemaModel> {
    method _reqOptions (line 65) | private _reqOptions(): RequestOptions {

FILE: admin/src/app/shared/services/status.service.ts
  class StatusService (line 14) | class StatusService extends Service<RestAdapter> {
    method constructor (line 15) | constructor(inject: Injector, private _configurator: Configurator) {
    method status (line 19) | status(): Observable<StatusModel> {
    method kong (line 34) | kong(): Observable<KongModel> {

FILE: admin/src/app/shared/services/uploader.service.ts
  type FileProgress (line 5) | interface FileProgress {
  type FileCustomData (line 13) | interface FileCustomData {
  class FileUpload (line 18) | class FileUpload {
    method constructor (line 35) | constructor(id: string, originalName: string, size: number) {
    method setFile (line 55) | setFile(file: any) {
    method setProgres (line 59) | setProgres(progress: FileProgress): void {
    method setError (line 63) | setError(): void {
    method setAbort (line 68) | setAbort(): void {
    method onFinished (line 73) | onFinished(status: number, statusText: string, response: string): void {
  class UploadService (line 86) | class UploadService {
    method setOptions (line 109) | setOptions(options: any): void {
    method uploadFilesInQueue (line 148) | uploadFilesInQueue(): void {
    method uploadFile (line 156) | uploadFile(file: any): void {
    method addFilesToQueue (line 250) | addFilesToQueue(files: File[]): void {
    method createFileUrl (line 268) | createFileUrl(file: File) {
    method removeFileFromQueue (line 276) | removeFileFromQueue(i: number): void {
    method clearQueue (line 280) | clearQueue(): void {
    method getQueueSize (line 284) | getQueueSize(): number {
    method inQueue (line 288) | inQueue(file: any): boolean {
    method isFile (line 293) | isFile(file: any): boolean {
    method generateRandomIndex (line 297) | generateRandomIndex(): string {

FILE: admin/src/app/shared/share.module.ts
  class ShareModule (line 12) | class ShareModule { }

FILE: admin/src/custom-typings.d.ts
  type SystemJS (line 55) | interface SystemJS {
  type GlobalEnvironment (line 59) | interface GlobalEnvironment {
  type Es6PromiseLoader (line 66) | interface Es6PromiseLoader {
  type FactoryEs6PromiseLoader (line 70) | type FactoryEs6PromiseLoader = () => Es6PromiseLoader;
  type FactoryPromise (line 71) | type FactoryPromise = () => Promise<any>;
  type AsyncRoutes (line 73) | type AsyncRoutes = {
  type IdleCallbacks (line 81) | type IdleCallbacks = Es6PromiseLoader |
  type WebpackModule (line 86) | interface WebpackModule {
  type WebpackRequire (line 103) | interface WebpackRequire {
  type WebpackContext (line 110) | interface WebpackContext extends WebpackRequire {
  type ErrorStackTraceLimit (line 114) | interface ErrorStackTraceLimit {
  type NodeRequire (line 120) | interface NodeRequire extends WebpackRequire {}
  type ErrorConstructor (line 121) | interface ErrorConstructor extends ErrorStackTraceLimit {}
  type NodeRequireFunction (line 122) | interface NodeRequireFunction extends Es6PromiseLoader  {}
  type NodeModule (line 123) | interface NodeModule extends WebpackModule {}
  type Global (line 124) | interface Global extends GlobalEnvironment  {}

FILE: admin/src/main.browser.ts
  function main (line 16) | function main(): Promise<any> {

FILE: client-build/app/components/markers/markers.worker.js
  function a (line 5) | function a() {
  function convertRange (line 62) | function convertRange(value, r1, r2) {

FILE: client-build/assets/lasso.js
  function e (line 3) | function e(t, n) { return n = { exports: {} }, t(n, n.exports), n.exports }
  function o (line 5) | function o() {
  function n (line 27) | function n(t, n, e) { var o = t * n,
  function n (line 42) | function n(t, n) { var r = t + n,
  function r (line 49) | function r(t, r) { var e = 0 | t.length,
  function n (line 63) | function n(t, n, r) { var e = t + n,
  function n (line 70) | function n(t, n) { var o = t.length; if (1 === o) { var a = r(t[0], n); ...
  function n (line 84) | function n(t, n) { var r = t + n,
  function r (line 91) | function r(t, r) { var e = 0 | t.length,
  function n (line 105) | function n(t, n) { for (var r = new Array(t.length - 1), e = 1; e < t.le...
  function r (line 108) | function r(t) { for (var n = new Array(t), r = 0; r < t; ++r) { n[r] = n...
  function e (line 110) | function e(t) { return 1 & t ? "-" : "" }
  function o (line 112) | function o(t) { if (1 === t.length) return t[0]; if (2 === t.length) ret...
  function i (line 114) | function i(t) { if (2 === t.length) return [
  function f (line 118) | function f(t) { for (var e = [], a = [], s = r(t), u = [], l = 0; l < t;...
  function c (line 124) | function c(t) { var n = x[t.length]; return n || (n = x[t.length] = f(t....
  function h (line 126) | function h() { for (; x.length <= _;) x.push(f(x.length)); for (var n = ...
  function n (line 162) | function n(t, n) { for (var e = n[0], o = n[1], a = t.length, s = 1, i =...

FILE: client-build/scripts/app-02b6e51953.js
  function userdatasource (line 36) | function userdatasource() {
  function trayPiechart (line 118) | function trayPiechart(d3) {
  function tray (line 194) | function tray() {
  function trayBarchart (line 275) | function trayBarchart(d3) {
  function tools (line 337) | function tools() {
  function timelines (line 370) | function timelines() {
  function survival (line 928) | function survival() {
  function sunburst (line 1201) | function sunburst() {
  function spreadsheet (line 1642) | function spreadsheet() {
  function explore (line 1840) | function explore() {
  function explore (line 2150) | function explore() {
  function pathways (line 3112) | function pathways() {
  function parallelcoord (line 3510) | function parallelcoord() {
  function osSound (line 3748) | function osSound() {
  function oncoscape (line 3770) | function oncoscape($http) {
  function osAuth (line 3849) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 4038) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 5016) | function markers() {
  function login (line 6302) | function login() {
  function login (line 6346) | function login() {
  function layoutPanel (line 6367) | function layoutPanel() {
  function landing (line 6666) | function landing() {
  function importPanel (line 6709) | function importPanel() {
  function help (line 6762) | function help() {
  function heatmap (line 6788) | function heatmap() {
  function header (line 7156) | function header() {
  function geneMenu (line 7289) | function geneMenu() {
  function genedashboard (line 7392) | function genedashboard() {
  function datasource (line 7771) | function datasource() {
  function compareCluster (line 7802) | function compareCluster() {
  function colorPanel (line 8093) | function colorPanel() {
  function collectionPanel (line 8439) | function collectionPanel() {
  function cohortMenu (line 8501) | function cohortMenu() {
  function barchart (line 8762) | function barchart() {
  function runBlock (line 8956) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 8978) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 9257) | function config($logProvider) {

FILE: client-build/scripts/app-04fb2e86f5.js
  function userdatasource (line 36) | function userdatasource() {
  function trayPiechart (line 131) | function trayPiechart(d3) {
  function tray (line 207) | function tray() {
  function trayBarchart (line 288) | function trayBarchart(d3) {
  function tools (line 350) | function tools() {
  function timelines (line 383) | function timelines() {
  function survival (line 941) | function survival() {
  function sunburst (line 1214) | function sunburst() {
  function spreadsheet (line 1655) | function spreadsheet() {
  function explore (line 1853) | function explore() {
  function explore (line 2163) | function explore() {
  function pathways (line 3165) | function pathways() {
  function parallelcoord (line 3563) | function parallelcoord() {
  function osSound (line 3801) | function osSound() {
  function oncoscape (line 3823) | function oncoscape($http) {
  function osAuth (line 3902) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 4092) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 5073) | function markers() {
  function login (line 6359) | function login() {
  function login (line 6403) | function login() {
  function layoutPanel (line 6424) | function layoutPanel() {
  function landing (line 6723) | function landing() {
  function importPanel (line 6766) | function importPanel() {
  function help (line 6819) | function help() {
  function heatmap (line 6845) | function heatmap() {
  function header (line 7213) | function header() {
  function geneMenu (line 7346) | function geneMenu() {
  function genedashboard (line 7449) | function genedashboard() {
  function datasource (line 7828) | function datasource() {
  function compareCluster (line 7859) | function compareCluster() {
  function colorPanel (line 8150) | function colorPanel() {
  function collectionPanel (line 8496) | function collectionPanel() {
  function cohortMenu (line 8558) | function cohortMenu() {
  function barchart (line 8819) | function barchart() {
  function runBlock (line 9013) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 9035) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 9313) | function config($logProvider) {

FILE: client-build/scripts/app-13a45ef8c2.js
  function userdatasource (line 36) | function userdatasource() {
  function trayPiechart (line 131) | function trayPiechart(d3) {
  function tray (line 207) | function tray() {
  function trayBarchart (line 288) | function trayBarchart(d3) {
  function tools (line 350) | function tools() {
  function timelines (line 383) | function timelines() {
  function survival (line 941) | function survival() {
  function sunburst (line 1214) | function sunburst() {
  function spreadsheet (line 1655) | function spreadsheet() {
  function explore (line 1852) | function explore() {
  function explore (line 2910) | function explore() {
  function pathways (line 3220) | function pathways() {
  function parallelcoord (line 3618) | function parallelcoord() {
  function osSound (line 3856) | function osSound() {
  function oncoscape (line 3878) | function oncoscape($http) {
  function osAuth (line 3957) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 4147) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 5128) | function markers() {
  function login (line 6414) | function login() {
  function login (line 6458) | function login() {
  function layoutPanel (line 6479) | function layoutPanel() {
  function landing (line 6778) | function landing() {
  function importPanel (line 6821) | function importPanel() {
  function help (line 6874) | function help() {
  function heatmap (line 6900) | function heatmap() {
  function header (line 7472) | function header() {
  function geneMenu (line 7605) | function geneMenu() {
  function genedashboard (line 7708) | function genedashboard() {
  function datasource (line 8087) | function datasource() {
  function compareCluster (line 8118) | function compareCluster() {
  function colorPanel (line 8409) | function colorPanel() {
  function collectionPanel (line 8755) | function collectionPanel() {
  function cohortMenu (line 8817) | function cohortMenu() {
  function barchart (line 9078) | function barchart() {
  function runBlock (line 9272) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 9294) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 9572) | function config($logProvider) {

FILE: client-build/scripts/app-164bd53929.js
  function userdatasource (line 36) | function userdatasource() {
  function trayPiechart (line 117) | function trayPiechart(d3) {
  function tray (line 193) | function tray() {
  function trayBarchart (line 274) | function trayBarchart(d3) {
  function tools (line 336) | function tools() {
  function timelines (line 369) | function timelines() {
  function survival (line 927) | function survival() {
  function sunburst (line 1200) | function sunburst() {
  function spreadsheet (line 1641) | function spreadsheet() {
  function explore (line 1839) | function explore() {
  function explore (line 2149) | function explore() {
  function pathways (line 3111) | function pathways() {
  function parallelcoord (line 3509) | function parallelcoord() {
  function osSound (line 3747) | function osSound() {
  function oncoscape (line 3769) | function oncoscape($http) {
  function osAuth (line 3848) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 4038) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 5016) | function markers() {
  function login (line 6302) | function login() {
  function login (line 6346) | function login() {
  function layoutPanel (line 6367) | function layoutPanel() {
  function landing (line 6666) | function landing() {
  function importPanel (line 6709) | function importPanel() {
  function help (line 6762) | function help() {
  function heatmap (line 6788) | function heatmap() {
  function header (line 7156) | function header() {
  function geneMenu (line 7289) | function geneMenu() {
  function genedashboard (line 7392) | function genedashboard() {
  function datasource (line 7771) | function datasource() {
  function compareCluster (line 7802) | function compareCluster() {
  function colorPanel (line 8093) | function colorPanel() {
  function collectionPanel (line 8439) | function collectionPanel() {
  function barchart (line 8501) | function barchart() {
  function cohortMenu (line 8695) | function cohortMenu() {
  function runBlock (line 8956) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 8978) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 9257) | function config($logProvider) {

FILE: client-build/scripts/app-2ad8bbe0e6.js
  function trayPiechart (line 36) | function trayPiechart(d3) {
  function tray (line 112) | function tray() {
  function trayBarchart (line 193) | function trayBarchart(d3) {
  function tools (line 255) | function tools() {
  function timelines (line 288) | function timelines() {
  function survival (line 846) | function survival() {
  function sunburst (line 1119) | function sunburst() {
  function spreadsheet (line 1560) | function spreadsheet() {
  function explore (line 1758) | function explore() {
  function explore (line 2068) | function explore() {
  function pathways (line 2637) | function pathways() {
  function osSound (line 3035) | function osSound() {
  function oncoscape (line 3057) | function oncoscape($http) {
  function osAuth (line 3129) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 3302) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 4257) | function markers() {
  function login (line 5543) | function login() {
  function login (line 5585) | function login() {
  function layoutPanel (line 5606) | function layoutPanel() {
  function landing (line 5905) | function landing() {
  function help (line 5948) | function help() {
  function heatmap (line 5974) | function heatmap() {
  function header (line 6342) | function header() {
  function geneMenu (line 6472) | function geneMenu() {
  function datasource (line 6662) | function datasource() {
  function compareCluster (line 6693) | function compareCluster() {
  function colorPanel (line 6984) | function colorPanel() {
  function collectionPanel (line 7299) | function collectionPanel() {
  function cohortMenu (line 7361) | function cohortMenu() {
  function barchart (line 7618) | function barchart() {
  function runBlock (line 7812) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 7834) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 8096) | function config($logProvider) {

FILE: client-build/scripts/app-304ad47df5.js
  function userdatasource (line 36) | function userdatasource() {
  function trayPiechart (line 129) | function trayPiechart(d3) {
  function tray (line 205) | function tray() {
  function trayBarchart (line 286) | function trayBarchart(d3) {
  function tools (line 348) | function tools() {
  function timelines (line 381) | function timelines() {
  function survival (line 939) | function survival() {
  function sunburst (line 1212) | function sunburst() {
  function spreadsheet (line 1653) | function spreadsheet() {
  function explore (line 1851) | function explore() {
  function explore (line 2161) | function explore() {
  function pathways (line 3123) | function pathways() {
  function parallelcoord (line 3521) | function parallelcoord() {
  function osSound (line 3759) | function osSound() {
  function oncoscape (line 3781) | function oncoscape($http) {
  function osAuth (line 3860) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 4050) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 5028) | function markers() {
  function login (line 6314) | function login() {
  function login (line 6358) | function login() {
  function layoutPanel (line 6379) | function layoutPanel() {
  function landing (line 6678) | function landing() {
  function importPanel (line 6721) | function importPanel() {
  function help (line 6774) | function help() {
  function heatmap (line 6800) | function heatmap() {
  function header (line 7168) | function header() {
  function geneMenu (line 7301) | function geneMenu() {
  function genedashboard (line 7404) | function genedashboard() {
  function datasource (line 7783) | function datasource() {
  function compareCluster (line 7814) | function compareCluster() {
  function colorPanel (line 8105) | function colorPanel() {
  function collectionPanel (line 8451) | function collectionPanel() {
  function cohortMenu (line 8513) | function cohortMenu() {
  function barchart (line 8774) | function barchart() {
  function runBlock (line 8968) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 8990) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 9269) | function config($logProvider) {

FILE: client-build/scripts/app-33010de103.js
  function e (line 1) | function e(e){function t(t,n){var a=e.select(n[0]).append("svg").attr("c...
  function e (line 1) | function e(){function e(e,t){var n=this;n.trayClass=Math.random().toStri...
  function e (line 1) | function e(e){function t(t,n){var a=e.select(n[0]).append("svg").attr("c...
  function e (line 1) | function e(){function e(e,t){var n=this;n.tools=e.getTools(),n.explore=f...
  function e (line 1) | function e(){function e(e,t,n,a,o,r,s,i,l){function c(){g(),u()}function...
  function e (line 1) | function e(){function e(e,t,n,a,o,r,s,i){t.setBusy(!0);var l=this;l.data...
  function e (line 1) | function e(){function e(e,t,n,a,o,r,s,i){var l,c=this;c.patients=[],c.pa...
  function e (line 1) | function e(){function e(e,t,n,a,o,r,s,i,l,c,d,u){e.setBusy(!0);var p,m=t...
  function e (line 1) | function e(){function e(e,t,n,a,o,r,s,i){function l(e){if(null!==w){w=e,...
  function e (line 2) | function e(){function e(e,t,n,a,o,r,s,i,l,c){function d(){var e=$.sample...
  function e (line 2) | function e(){function e(e,t,n,a,o,r,s,i){function l(){var e="rgb(5, 108,...
  function e (line 2) | function e(){function e(){t.play()}var t=new Audio("data:audio/wav;base6...
  function e (line 2) | function e(e){var t="/api/";t="https://dev.oncoscape.sttrcancer.io/api/"...
  function e (line 2) | function e(e,t,n,a,o,r){var s=new n.Signal,i=new n.Signal,l=null,c=funct...
  function e (line 2) | function e(e,t,n,a,o,r,s,i,l,c){function d(){return K?new Promise(functi...
  function e (line 2) | function e(){function e(e,t,n,a,o,r,s,i,l,c,d,u){function p(e){e.sampleI...
  function e (line 3) | function e(){function e(e,t,n,a){var o=this;o.networks=a.getAuthSources(...
  function e (line 3) | function e(){var e={restrict:"E",templateUrl:"app/components/loader/load...
  function e (line 3) | function e(){function e(e,t,n){var a=this;a.showPanelColorRna=!1,a.color...
  function e (line 3) | function e(){function e(e){angular.element(".marquee-x").marquee({partic...
  function e (line 3) | function e(){function e(){}var t={restrict:"E",templateUrl:"app/componen...
  function e (line 3) | function e(){function e(e,t,n,a,o,r,s,i){function l(t,n,a,o,r,s,i){if(t....
  function e (line 3) | function e(){function e(e,t,n,a,o){var r=this;r.showImport=!1,r.showTool...
  function e (line 3) | function e(){function e(e,t){var n=this;n.datasets=e.getDataSources(),n....
  function e (line 3) | function e(){function e(e,t,n,a,o,r,s,i,l,c,d){function u(){S.forEach(fu...
  function e (line 4) | function e(){function e(e,t,n){var a=this;a.showPanelColorRna=!1,a.color...
  function e (line 4) | function e(){function e(e,t,n,a,o,r,s,i){var l=this;l.cohorts=[],l.cohor...
  function e (line 4) | function e(){function e(e,t,n,a){function o(){clearTimeout(S),"grouped"=...
  function e (line 4) | function e(e,t){e.onerror=function(e,n,a,o,r){r||(r=new Error(e),r.fileN...
  function e (line 4) | function e(e,t){var n=function(e){return e.setBusy(!0),new Promise(funct...
  function e (line 4) | function e(e){e.debugEnabled(!1)}

FILE: client-build/scripts/app-379a6d780c.js
  function trayPiechart (line 36) | function trayPiechart(d3) {
  function tray (line 112) | function tray() {
  function trayBarchart (line 193) | function trayBarchart(d3) {
  function tools (line 255) | function tools() {
  function timelines (line 288) | function timelines() {
  function survival (line 846) | function survival() {
  function sunburst (line 1119) | function sunburst() {
  function spreadsheet (line 1560) | function spreadsheet() {
  function explore (line 1758) | function explore() {
  function explore (line 2068) | function explore() {
  function pathways (line 2989) | function pathways() {
  function osSound (line 3387) | function osSound() {
  function oncoscape (line 3409) | function oncoscape($http) {
  function osAuth (line 3482) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 3655) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 4618) | function markers() {
  function login (line 5904) | function login() {
  function login (line 5946) | function login() {
  function layoutPanel (line 5967) | function layoutPanel() {
  function landing (line 6266) | function landing() {
  function help (line 6309) | function help() {
  function heatmap (line 6335) | function heatmap() {
  function header (line 6703) | function header() {
  function geneMenu (line 6833) | function geneMenu() {
  function datasource (line 7023) | function datasource() {
  function compareCluster (line 7054) | function compareCluster() {
  function colorPanel (line 7345) | function colorPanel() {
  function collectionPanel (line 7660) | function collectionPanel() {
  function cohortMenu (line 7722) | function cohortMenu() {
  function barchart (line 7983) | function barchart() {
  function runBlock (line 8177) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 8199) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 8461) | function config($logProvider) {

FILE: client-build/scripts/app-3aec4cf16a.js
  function userdatasource (line 36) | function userdatasource() {
  function trayPiechart (line 104) | function trayPiechart(d3) {
  function tray (line 180) | function tray() {
  function trayBarchart (line 261) | function trayBarchart(d3) {
  function tools (line 323) | function tools() {
  function timelines (line 356) | function timelines() {
  function survival (line 914) | function survival() {
  function sunburst (line 1187) | function sunburst() {
  function spreadsheet (line 1628) | function spreadsheet() {
  function explore (line 1864) | function explore() {
  function explore (line 2174) | function explore() {
  function pathways (line 3245) | function pathways() {
  function parallelcoord (line 3643) | function parallelcoord() {
  function osSound (line 3880) | function osSound() {
  function oncoscape (line 3902) | function oncoscape($http) {
  function osAuth (line 4019) | function osAuth(osHttp, $http, signals, $location, auth, osApi, _) {
  function osApi (line 4258) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 5289) | function markers() {
  function login (line 6581) | function login() {
  function login (line 6625) | function login() {
  function layoutPanel (line 6646) | function layoutPanel() {
  function landing (line 6945) | function landing() {
  function importPanel (line 6988) | function importPanel() {
  function help (line 7041) | function help() {
  function heatmap (line 7067) | function heatmap() {
  function header (line 7699) | function header() {
  function geneMenu (line 7832) | function geneMenu() {
  function genedashboard (line 7935) | function genedashboard() {
  function datasource (line 8314) | function datasource() {
  function compareCluster (line 8345) | function compareCluster() {
  function colorPanel (line 8636) | function colorPanel() {
  function collectionPanel (line 8984) | function collectionPanel() {
  function cohortMenu (line 9046) | function cohortMenu() {
  function barchart (line 9315) | function barchart() {
  function runBlock (line 9509) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 9531) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 9808) | function config($logProvider) {

FILE: client-build/scripts/app-44a4050100.js
  function trayPiechart (line 36) | function trayPiechart(d3) {
  function tray (line 112) | function tray() {
  function trayBarchart (line 193) | function trayBarchart(d3) {
  function tools (line 255) | function tools() {
  function timelines (line 288) | function timelines() {
  function survival (line 846) | function survival() {
  function sunburst (line 1119) | function sunburst() {
  function spreadsheet (line 1560) | function spreadsheet() {
  function explore (line 1758) | function explore() {
  function explore (line 2068) | function explore() {
  function pathways (line 2989) | function pathways() {
  function osSound (line 3387) | function osSound() {
  function oncoscape (line 3409) | function oncoscape($http) {
  function osAuth (line 3482) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 3655) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 4618) | function markers() {
  function login (line 5904) | function login() {
  function login (line 5946) | function login() {
  function layoutPanel (line 5967) | function layoutPanel() {
  function landing (line 6266) | function landing() {
  function help (line 6309) | function help() {
  function heatmap (line 6335) | function heatmap() {
  function header (line 6703) | function header() {
  function geneMenu (line 6833) | function geneMenu() {
  function datasource (line 7023) | function datasource() {
  function compareCluster (line 7054) | function compareCluster() {
  function colorPanel (line 7345) | function colorPanel() {
  function collectionPanel (line 7660) | function collectionPanel() {
  function cohortMenu (line 7722) | function cohortMenu() {
  function barchart (line 7983) | function barchart() {
  function runBlock (line 8177) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 8199) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 8461) | function config($logProvider) {

FILE: client-build/scripts/app-493eb88db0.js
  function userdatasource (line 36) | function userdatasource() {
  function trayPiechart (line 131) | function trayPiechart(d3) {
  function tray (line 207) | function tray() {
  function trayBarchart (line 288) | function trayBarchart(d3) {
  function tools (line 350) | function tools() {
  function timelines (line 383) | function timelines() {
  function survival (line 941) | function survival() {
  function sunburst (line 1214) | function sunburst() {
  function spreadsheet (line 1655) | function spreadsheet() {
  function explore (line 1853) | function explore() {
  function explore (line 2163) | function explore() {
  function pathways (line 3165) | function pathways() {
  function parallelcoord (line 3563) | function parallelcoord() {
  function osSound (line 3801) | function osSound() {
  function oncoscape (line 3823) | function oncoscape($http) {
  function osAuth (line 3902) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 4092) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 5073) | function markers() {
  function login (line 6359) | function login() {
  function login (line 6403) | function login() {
  function layoutPanel (line 6424) | function layoutPanel() {
  function landing (line 6723) | function landing() {
  function importPanel (line 6766) | function importPanel() {
  function help (line 6819) | function help() {
  function heatmap (line 6845) | function heatmap() {
  function header (line 7213) | function header() {
  function geneMenu (line 7346) | function geneMenu() {
  function genedashboard (line 7449) | function genedashboard() {
  function datasource (line 7828) | function datasource() {
  function compareCluster (line 7859) | function compareCluster() {
  function colorPanel (line 8150) | function colorPanel() {
  function collectionPanel (line 8496) | function collectionPanel() {
  function cohortMenu (line 8558) | function cohortMenu() {
  function barchart (line 8819) | function barchart() {
  function runBlock (line 9013) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 9035) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 9313) | function config($logProvider) {

FILE: client-build/scripts/app-4c74933d03.js
  function userdatasource (line 36) | function userdatasource() {
  function trayPiechart (line 131) | function trayPiechart(d3) {
  function tray (line 207) | function tray() {
  function trayBarchart (line 288) | function trayBarchart(d3) {
  function tools (line 350) | function tools() {
  function timelines (line 383) | function timelines() {
  function survival (line 941) | function survival() {
  function sunburst (line 1214) | function sunburst() {
  function spreadsheet (line 1655) | function spreadsheet() {
  function explore (line 1856) | function explore() {
  function explore (line 2166) | function explore() {
  function pathways (line 3167) | function pathways() {
  function parallelcoord (line 3565) | function parallelcoord() {
  function osSound (line 3803) | function osSound() {
  function oncoscape (line 3825) | function oncoscape($http) {
  function osAuth (line 3904) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 4094) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 5075) | function markers() {
  function login (line 6361) | function login() {
  function login (line 6405) | function login() {
  function layoutPanel (line 6426) | function layoutPanel() {
  function landing (line 6725) | function landing() {
  function importPanel (line 6768) | function importPanel() {
  function help (line 6821) | function help() {
  function heatmap (line 6847) | function heatmap() {
  function header (line 7215) | function header() {
  function geneMenu (line 7348) | function geneMenu() {
  function genedashboard (line 7451) | function genedashboard() {
  function datasource (line 7830) | function datasource() {
  function compareCluster (line 7861) | function compareCluster() {
  function colorPanel (line 8152) | function colorPanel() {
  function collectionPanel (line 8498) | function collectionPanel() {
  function cohortMenu (line 8560) | function cohortMenu() {
  function barchart (line 8821) | function barchart() {
  function runBlock (line 9015) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 9037) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 9315) | function config($logProvider) {

FILE: client-build/scripts/app-584bf5bdfc.js
  function userdatasource (line 36) | function userdatasource() {
  function trayPiechart (line 100) | function trayPiechart(d3) {
  function tray (line 176) | function tray() {
  function trayBarchart (line 257) | function trayBarchart(d3) {
  function tools (line 319) | function tools() {
  function timelines (line 352) | function timelines() {
  function survival (line 910) | function survival() {
  function sunburst (line 1183) | function sunburst() {
  function spreadsheet (line 1624) | function spreadsheet() {
  function explore (line 1847) | function explore() {
  function explore (line 2157) | function explore() {
  function pathways (line 3224) | function pathways() {
  function parallelcoord (line 3622) | function parallelcoord() {
  function osSound (line 3860) | function osSound() {
  function oncoscape (line 3882) | function oncoscape($http) {
  function osAuth (line 3999) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 4234) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 5240) | function markers() {
  function login (line 6532) | function login() {
  function login (line 6576) | function login() {
  function layoutPanel (line 6597) | function layoutPanel() {
  function landing (line 6896) | function landing() {
  function importPanel (line 6939) | function importPanel() {
  function help (line 6992) | function help() {
  function heatmap (line 7018) | function heatmap() {
  function header (line 7636) | function header() {
  function geneMenu (line 7769) | function geneMenu() {
  function genedashboard (line 7872) | function genedashboard() {
  function datasource (line 8251) | function datasource() {
  function compareCluster (line 8282) | function compareCluster() {
  function colorPanel (line 8573) | function colorPanel() {
  function collectionPanel (line 8921) | function collectionPanel() {
  function cohortMenu (line 8983) | function cohortMenu() {
  function barchart (line 9244) | function barchart() {
  function runBlock (line 9438) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 9460) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 9737) | function config($logProvider) {

FILE: client-build/scripts/app-5e4c0f52c4.js
  function userdatasource (line 36) | function userdatasource() {
  function trayPiechart (line 138) | function trayPiechart(d3) {
  function tray (line 214) | function tray() {
  function trayBarchart (line 295) | function trayBarchart(d3) {
  function tools (line 357) | function tools() {
  function timelines (line 390) | function timelines() {
  function survival (line 948) | function survival() {
  function sunburst (line 1221) | function sunburst() {
  function spreadsheet (line 1662) | function spreadsheet() {
  function explore (line 1863) | function explore() {
  function explore (line 2173) | function explore() {
  function pathways (line 3227) | function pathways() {
  function parallelcoord (line 3625) | function parallelcoord() {
  function osSound (line 3863) | function osSound() {
  function oncoscape (line 3885) | function oncoscape($http) {
  function osAuth (line 3964) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 4154) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 5142) | function markers() {
  function login (line 6434) | function login() {
  function login (line 6478) | function login() {
  function layoutPanel (line 6499) | function layoutPanel() {
  function landing (line 6798) | function landing() {
  function importPanel (line 6841) | function importPanel() {
  function help (line 6894) | function help() {
  function heatmap (line 6920) | function heatmap() {
  function header (line 7538) | function header() {
  function geneMenu (line 7671) | function geneMenu() {
  function genedashboard (line 7774) | function genedashboard() {
  function datasource (line 8153) | function datasource() {
  function compareCluster (line 8184) | function compareCluster() {
  function colorPanel (line 8475) | function colorPanel() {
  function collectionPanel (line 8821) | function collectionPanel() {
  function cohortMenu (line 8883) | function cohortMenu() {
  function barchart (line 9144) | function barchart() {
  function runBlock (line 9338) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 9360) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 9638) | function config($logProvider) {

FILE: client-build/scripts/app-64850464b9.js
  function userdatasource (line 36) | function userdatasource() {
  function trayPiechart (line 118) | function trayPiechart(d3) {
  function tray (line 194) | function tray() {
  function trayBarchart (line 275) | function trayBarchart(d3) {
  function tools (line 337) | function tools() {
  function timelines (line 370) | function timelines() {
  function survival (line 928) | function survival() {
  function sunburst (line 1201) | function sunburst() {
  function spreadsheet (line 1642) | function spreadsheet() {
  function explore (line 1840) | function explore() {
  function explore (line 2150) | function explore() {
  function pathways (line 3112) | function pathways() {
  function parallelcoord (line 3510) | function parallelcoord() {
  function osSound (line 3748) | function osSound() {
  function oncoscape (line 3770) | function oncoscape($http) {
  function osAuth (line 3849) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 4039) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 5017) | function markers() {
  function login (line 6303) | function login() {
  function login (line 6347) | function login() {
  function layoutPanel (line 6368) | function layoutPanel() {
  function landing (line 6667) | function landing() {
  function importPanel (line 6710) | function importPanel() {
  function help (line 6763) | function help() {
  function heatmap (line 6789) | function heatmap() {
  function header (line 7157) | function header() {
  function geneMenu (line 7290) | function geneMenu() {
  function genedashboard (line 7393) | function genedashboard() {
  function datasource (line 7772) | function datasource() {
  function compareCluster (line 7803) | function compareCluster() {
  function colorPanel (line 8094) | function colorPanel() {
  function collectionPanel (line 8440) | function collectionPanel() {
  function cohortMenu (line 8502) | function cohortMenu() {
  function barchart (line 8763) | function barchart() {
  function runBlock (line 8957) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 8979) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 9258) | function config($logProvider) {

FILE: client-build/scripts/app-7252b57c8a.js
  function userdatasource (line 36) | function userdatasource() {
  function trayPiechart (line 104) | function trayPiechart(d3) {
  function tray (line 180) | function tray() {
  function trayBarchart (line 261) | function trayBarchart(d3) {
  function tools (line 323) | function tools() {
  function timelines (line 356) | function timelines() {
  function survival (line 914) | function survival() {
  function sunburst (line 1187) | function sunburst() {
  function spreadsheet (line 1628) | function spreadsheet() {
  function explore (line 1851) | function explore() {
  function explore (line 2161) | function explore() {
  function pathways (line 3228) | function pathways() {
  function parallelcoord (line 3626) | function parallelcoord() {
  function osSound (line 3864) | function osSound() {
  function oncoscape (line 3886) | function oncoscape($http) {
  function osAuth (line 3965) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 4198) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 5193) | function markers() {
  function login (line 6485) | function login() {
  function login (line 6529) | function login() {
  function layoutPanel (line 6550) | function layoutPanel() {
  function landing (line 6849) | function landing() {
  function importPanel (line 6892) | function importPanel() {
  function help (line 6945) | function help() {
  function heatmap (line 6971) | function heatmap() {
  function header (line 7589) | function header() {
  function geneMenu (line 7722) | function geneMenu() {
  function genedashboard (line 7825) | function genedashboard() {
  function datasource (line 8204) | function datasource() {
  function compareCluster (line 8235) | function compareCluster() {
  function colorPanel (line 8526) | function colorPanel() {
  function collectionPanel (line 8874) | function collectionPanel() {
  function cohortMenu (line 8936) | function cohortMenu() {
  function barchart (line 9197) | function barchart() {
  function runBlock (line 9391) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 9413) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 9691) | function config($logProvider) {

FILE: client-build/scripts/app-817f97333e.js
  function trayPiechart (line 36) | function trayPiechart(d3) {
  function tray (line 112) | function tray() {
  function trayBarchart (line 193) | function trayBarchart(d3) {
  function tools (line 255) | function tools() {
  function timelines (line 288) | function timelines() {
  function survival (line 846) | function survival() {
  function sunburst (line 1119) | function sunburst() {
  function spreadsheet (line 1560) | function spreadsheet() {
  function explore (line 1758) | function explore() {
  function explore (line 2068) | function explore() {
  function pathways (line 2997) | function pathways() {
  function osSound (line 3395) | function osSound() {
  function oncoscape (line 3417) | function oncoscape($http) {
  function osAuth (line 3489) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 3662) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 4618) | function markers() {
  function login (line 5904) | function login() {
  function login (line 5946) | function login() {
  function layoutPanel (line 5967) | function layoutPanel() {
  function landing (line 6266) | function landing() {
  function help (line 6309) | function help() {
  function heatmap (line 6335) | function heatmap() {
  function header (line 6703) | function header() {
  function geneMenu (line 6833) | function geneMenu() {
  function datasource (line 7023) | function datasource() {
  function compareCluster (line 7054) | function compareCluster() {
  function colorPanel (line 7345) | function colorPanel() {
  function collectionPanel (line 7660) | function collectionPanel() {
  function cohortMenu (line 7722) | function cohortMenu() {
  function barchart (line 7983) | function barchart() {
  function runBlock (line 8177) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 8199) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 8461) | function config($logProvider) {

FILE: client-build/scripts/app-95d9b45a1f.js
  function trayPiechart (line 36) | function trayPiechart(d3) {
  function tray (line 112) | function tray() {
  function trayBarchart (line 193) | function trayBarchart(d3) {
  function tools (line 255) | function tools() {
  function timelines (line 288) | function timelines() {
  function survival (line 846) | function survival() {
  function sunburst (line 1119) | function sunburst() {
  function spreadsheet (line 1560) | function spreadsheet() {
  function explore (line 1758) | function explore() {
  function explore (line 2068) | function explore() {
  function pathways (line 3004) | function pathways() {
  function osSound (line 3402) | function osSound() {
  function oncoscape (line 3424) | function oncoscape($http) {
  function osAuth (line 3499) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 3672) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 4637) | function markers() {
  function login (line 5923) | function login() {
  function login (line 5965) | function login() {
  function layoutPanel (line 5986) | function layoutPanel() {
  function landing (line 6285) | function landing() {
  function help (line 6328) | function help() {
  function heatmap (line 6354) | function heatmap() {
  function header (line 6722) | function header() {
  function geneMenu (line 6852) | function geneMenu() {
  function datasource (line 7042) | function datasource() {
  function compareCluster (line 7073) | function compareCluster() {
  function colorPanel (line 7364) | function colorPanel() {
  function collectionPanel (line 7679) | function collectionPanel() {
  function cohortMenu (line 7741) | function cohortMenu() {
  function barchart (line 8002) | function barchart() {
  function runBlock (line 8196) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 8218) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 8480) | function config($logProvider) {

FILE: client-build/scripts/app-98f7a31a45.js
  function userdatasource (line 36) | function userdatasource() {
  function trayPiechart (line 131) | function trayPiechart(d3) {
  function tray (line 207) | function tray() {
  function trayBarchart (line 288) | function trayBarchart(d3) {
  function tools (line 350) | function tools() {
  function timelines (line 383) | function timelines() {
  function survival (line 941) | function survival() {
  function sunburst (line 1214) | function sunburst() {
  function spreadsheet (line 1655) | function spreadsheet() {
  function explore (line 1853) | function explore() {
  function explore (line 2163) | function explore() {
  function pathways (line 3165) | function pathways() {
  function parallelcoord (line 3563) | function parallelcoord() {
  function osSound (line 3801) | function osSound() {
  function oncoscape (line 3823) | function oncoscape($http) {
  function osAuth (line 3902) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 4092) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 5073) | function markers() {
  function login (line 6359) | function login() {
  function login (line 6403) | function login() {
  function layoutPanel (line 6424) | function layoutPanel() {
  function landing (line 6723) | function landing() {
  function importPanel (line 6766) | function importPanel() {
  function help (line 6819) | function help() {
  function heatmap (line 6845) | function heatmap() {
  function header (line 7213) | function header() {
  function geneMenu (line 7346) | function geneMenu() {
  function genedashboard (line 7449) | function genedashboard() {
  function datasource (line 7828) | function datasource() {
  function compareCluster (line 7859) | function compareCluster() {
  function colorPanel (line 8150) | function colorPanel() {
  function collectionPanel (line 8496) | function collectionPanel() {
  function cohortMenu (line 8558) | function cohortMenu() {
  function barchart (line 8819) | function barchart() {
  function runBlock (line 9013) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 9035) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 9313) | function config($logProvider) {

FILE: client-build/scripts/app-9e24740f47.js
  function trayPiechart (line 36) | function trayPiechart(d3) {
  function tray (line 112) | function tray() {
  function trayBarchart (line 193) | function trayBarchart(d3) {
  function tools (line 255) | function tools() {
  function timelines (line 288) | function timelines() {
  function survival (line 846) | function survival() {
  function sunburst (line 1119) | function sunburst() {
  function spreadsheet (line 1560) | function spreadsheet() {
  function explore (line 1758) | function explore() {
  function explore (line 2068) | function explore() {
  function pathways (line 2637) | function pathways() {
  function osSound (line 3035) | function osSound() {
  function oncoscape (line 3057) | function oncoscape($http) {
  function osAuth (line 3129) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 3302) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 4257) | function markers() {
  function login (line 5543) | function login() {
  function login (line 5585) | function login() {
  function layoutPanel (line 5606) | function layoutPanel() {
  function landing (line 5905) | function landing() {
  function help (line 5948) | function help() {
  function heatmap (line 5974) | function heatmap() {
  function header (line 6342) | function header() {
  function geneMenu (line 6472) | function geneMenu() {
  function datasource (line 6662) | function datasource() {
  function compareCluster (line 6693) | function compareCluster() {
  function colorPanel (line 6984) | function colorPanel() {
  function collectionPanel (line 7299) | function collectionPanel() {
  function cohortMenu (line 7361) | function cohortMenu() {
  function barchart (line 7618) | function barchart() {
  function runBlock (line 7812) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 7834) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 8096) | function config($logProvider) {

FILE: client-build/scripts/app-a00e325965.js
  function userdatasource (line 36) | function userdatasource() {
  function trayPiechart (line 100) | function trayPiechart(d3) {
  function tray (line 176) | function tray() {
  function trayBarchart (line 257) | function trayBarchart(d3) {
  function tools (line 319) | function tools() {
  function timelines (line 352) | function timelines() {
  function survival (line 910) | function survival() {
  function sunburst (line 1183) | function sunburst() {
  function spreadsheet (line 1624) | function spreadsheet() {
  function explore (line 1847) | function explore() {
  function explore (line 2157) | function explore() {
  function pathways (line 3224) | function pathways() {
  function parallelcoord (line 3622) | function parallelcoord() {
  function osSound (line 3860) | function osSound() {
  function oncoscape (line 3882) | function oncoscape($http) {
  function osAuth (line 3961) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 4188) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 5178) | function markers() {
  function login (line 6470) | function login() {
  function login (line 6514) | function login() {
  function layoutPanel (line 6535) | function layoutPanel() {
  function landing (line 6834) | function landing() {
  function importPanel (line 6877) | function importPanel() {
  function help (line 6930) | function help() {
  function heatmap (line 6956) | function heatmap() {
  function header (line 7574) | function header() {
  function geneMenu (line 7707) | function geneMenu() {
  function genedashboard (line 7810) | function genedashboard() {
  function datasource (line 8189) | function datasource() {
  function compareCluster (line 8220) | function compareCluster() {
  function colorPanel (line 8511) | function colorPanel() {
  function collectionPanel (line 8859) | function collectionPanel() {
  function cohortMenu (line 8921) | function cohortMenu() {
  function barchart (line 9182) | function barchart() {
  function runBlock (line 9376) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 9398) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 9676) | function config($logProvider) {

FILE: client-build/scripts/app-ad7f3d64b7.js
  function trayPiechart (line 36) | function trayPiechart(d3) {
  function tray (line 112) | function tray() {
  function trayBarchart (line 193) | function trayBarchart(d3) {
  function tools (line 255) | function tools() {
  function timelines (line 288) | function timelines() {
  function survival (line 846) | function survival() {
  function sunburst (line 1119) | function sunburst() {
  function spreadsheet (line 1560) | function spreadsheet() {
  function explore (line 1758) | function explore() {
  function explore (line 2068) | function explore() {
  function pathways (line 3003) | function pathways() {
  function osSound (line 3401) | function osSound() {
  function oncoscape (line 3423) | function oncoscape($http) {
  function osAuth (line 3496) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 3669) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 4634) | function markers() {
  function login (line 5920) | function login() {
  function login (line 5962) | function login() {
  function layoutPanel (line 5983) | function layoutPanel() {
  function landing (line 6282) | function landing() {
  function help (line 6325) | function help() {
  function heatmap (line 6351) | function heatmap() {
  function header (line 6719) | function header() {
  function geneMenu (line 6849) | function geneMenu() {
  function datasource (line 7039) | function datasource() {
  function compareCluster (line 7070) | function compareCluster() {
  function colorPanel (line 7361) | function colorPanel() {
  function collectionPanel (line 7676) | function collectionPanel() {
  function cohortMenu (line 7738) | function cohortMenu() {
  function barchart (line 7999) | function barchart() {
  function runBlock (line 8193) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 8215) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 8477) | function config($logProvider) {

FILE: client-build/scripts/app-b29ee7ba93.js
  function userdatasource (line 36) | function userdatasource() {
  function trayPiechart (line 131) | function trayPiechart(d3) {
  function tray (line 207) | function tray() {
  function trayBarchart (line 288) | function trayBarchart(d3) {
  function tools (line 350) | function tools() {
  function timelines (line 383) | function timelines() {
  function survival (line 941) | function survival() {
  function sunburst (line 1214) | function sunburst() {
  function spreadsheet (line 1655) | function spreadsheet() {
  function explore (line 1856) | function explore() {
  function explore (line 2166) | function explore() {
  function pathways (line 3220) | function pathways() {
  function parallelcoord (line 3618) | function parallelcoord() {
  function osSound (line 3856) | function osSound() {
  function oncoscape (line 3878) | function oncoscape($http) {
  function osAuth (line 3957) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 4147) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 5128) | function markers() {
  function login (line 6414) | function login() {
  function login (line 6458) | function login() {
  function layoutPanel (line 6479) | function layoutPanel() {
  function landing (line 6778) | function landing() {
  function importPanel (line 6821) | function importPanel() {
  function help (line 6874) | function help() {
  function heatmap (line 6900) | function heatmap() {
  function header (line 7362) | function header() {
  function geneMenu (line 7495) | function geneMenu() {
  function genedashboard (line 7598) | function genedashboard() {
  function datasource (line 7977) | function datasource() {
  function compareCluster (line 8008) | function compareCluster() {
  function colorPanel (line 8299) | function colorPanel() {
  function collectionPanel (line 8645) | function collectionPanel() {
  function cohortMenu (line 8707) | function cohortMenu() {
  function barchart (line 8968) | function barchart() {
  function runBlock (line 9162) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 9184) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 9462) | function config($logProvider) {

FILE: client-build/scripts/app-b6c603ad5a.js
  function userdatasource (line 36) | function userdatasource() {
  function trayPiechart (line 117) | function trayPiechart(d3) {
  function tray (line 193) | function tray() {
  function trayBarchart (line 274) | function trayBarchart(d3) {
  function tools (line 336) | function tools() {
  function timelines (line 369) | function timelines() {
  function survival (line 927) | function survival() {
  function sunburst (line 1200) | function sunburst() {
  function spreadsheet (line 1641) | function spreadsheet() {
  function explore (line 1839) | function explore() {
  function explore (line 2149) | function explore() {
  function pathways (line 3111) | function pathways() {
  function parallelcoord (line 3509) | function parallelcoord() {
  function osSound (line 3747) | function osSound() {
  function oncoscape (line 3769) | function oncoscape($http) {
  function osAuth (line 3848) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 4038) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 5016) | function markers() {
  function login (line 6302) | function login() {
  function login (line 6346) | function login() {
  function layoutPanel (line 6367) | function layoutPanel() {
  function landing (line 6666) | function landing() {
  function importPanel (line 6709) | function importPanel() {
  function help (line 6762) | function help() {
  function heatmap (line 6788) | function heatmap() {
  function header (line 7156) | function header() {
  function geneMenu (line 7289) | function geneMenu() {
  function genedashboard (line 7392) | function genedashboard() {
  function datasource (line 7771) | function datasource() {
  function compareCluster (line 7802) | function compareCluster() {
  function colorPanel (line 8093) | function colorPanel() {
  function collectionPanel (line 8439) | function collectionPanel() {
  function cohortMenu (line 8501) | function cohortMenu() {
  function barchart (line 8762) | function barchart() {
  function runBlock (line 8956) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 8978) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 9257) | function config($logProvider) {

FILE: client-build/scripts/app-c5578db98c.js
  function userdatasource (line 36) | function userdatasource() {
  function trayPiechart (line 131) | function trayPiechart(d3) {
  function tray (line 207) | function tray() {
  function trayBarchart (line 288) | function trayBarchart(d3) {
  function tools (line 350) | function tools() {
  function timelines (line 383) | function timelines() {
  function survival (line 941) | function survival() {
  function sunburst (line 1214) | function sunburst() {
  function spreadsheet (line 1655) | function spreadsheet() {
  function explore (line 1856) | function explore() {
  function explore (line 2166) | function explore() {
  function pathways (line 3220) | function pathways() {
  function parallelcoord (line 3618) | function parallelcoord() {
  function osSound (line 3856) | function osSound() {
  function oncoscape (line 3878) | function oncoscape($http) {
  function osAuth (line 3957) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 4147) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 5128) | function markers() {
  function login (line 6420) | function login() {
  function login (line 6464) | function login() {
  function layoutPanel (line 6485) | function layoutPanel() {
  function landing (line 6784) | function landing() {
  function importPanel (line 6827) | function importPanel() {
  function help (line 6880) | function help() {
  function heatmap (line 6906) | function heatmap() {
  function header (line 7524) | function header() {
  function geneMenu (line 7657) | function geneMenu() {
  function genedashboard (line 7760) | function genedashboard() {
  function datasource (line 8139) | function datasource() {
  function compareCluster (line 8170) | function compareCluster() {
  function colorPanel (line 8461) | function colorPanel() {
  function cohortMenu (line 8807) | function cohortMenu() {
  function collectionPanel (line 9068) | function collectionPanel() {
  function barchart (line 9130) | function barchart() {
  function runBlock (line 9324) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 9346) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 9624) | function config($logProvider) {

FILE: client-build/scripts/app-d30199b1fb.js
  function trayPiechart (line 36) | function trayPiechart(d3) {
  function tray (line 112) | function tray() {
  function trayBarchart (line 193) | function trayBarchart(d3) {
  function tools (line 255) | function tools() {
  function timelines (line 288) | function timelines() {
  function survival (line 846) | function survival() {
  function sunburst (line 1119) | function sunburst() {
  function spreadsheet (line 1560) | function spreadsheet() {
  function explore (line 1758) | function explore() {
  function explore (line 2068) | function explore() {
  function pathways (line 2637) | function pathways() {
  function osSound (line 3035) | function osSound() {
  function oncoscape (line 3057) | function oncoscape($http) {
  function osAuth (line 3131) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 3304) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 4258) | function markers() {
  function login (line 5544) | function login() {
  function login (line 5586) | function login() {
  function layoutPanel (line 5607) | function layoutPanel() {
  function landing (line 5906) | function landing() {
  function help (line 5949) | function help() {
  function heatmap (line 5975) | function heatmap() {
  function header (line 6343) | function header() {
  function geneMenu (line 6473) | function geneMenu() {
  function datasource (line 6663) | function datasource() {
  function compareCluster (line 6694) | function compareCluster() {
  function colorPanel (line 6985) | function colorPanel() {
  function collectionPanel (line 7300) | function collectionPanel() {
  function cohortMenu (line 7361) | function cohortMenu() {
  function barchart (line 7618) | function barchart() {
  function runBlock (line 7812) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 7834) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 8096) | function config($logProvider) {

FILE: client-build/scripts/app-d5579d90fc.js
  function trayPiechart (line 36) | function trayPiechart(d3) {
  function tray (line 112) | function tray() {
  function trayBarchart (line 193) | function trayBarchart(d3) {
  function tools (line 255) | function tools() {
  function timelines (line 288) | function timelines() {
  function survival (line 846) | function survival() {
  function sunburst (line 1119) | function sunburst() {
  function spreadsheet (line 1560) | function spreadsheet() {
  function explore (line 1758) | function explore() {
  function explore (line 2068) | function explore() {
  function pathways (line 3004) | function pathways() {
  function osSound (line 3402) | function osSound() {
  function oncoscape (line 3424) | function oncoscape($http) {
  function osAuth (line 3499) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 3672) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 4637) | function markers() {
  function login (line 5923) | function login() {
  function login (line 5965) | function login() {
  function layoutPanel (line 5986) | function layoutPanel() {
  function landing (line 6285) | function landing() {
  function help (line 6328) | function help() {
  function heatmap (line 6354) | function heatmap() {
  function header (line 6722) | function header() {
  function geneMenu (line 6852) | function geneMenu() {
  function datasource (line 7042) | function datasource() {
  function compareCluster (line 7073) | function compareCluster() {
  function colorPanel (line 7364) | function colorPanel() {
  function collectionPanel (line 7679) | function collectionPanel() {
  function cohortMenu (line 7741) | function cohortMenu() {
  function barchart (line 8002) | function barchart() {
  function runBlock (line 8196) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 8218) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 8481) | function config($logProvider) {

FILE: client-build/scripts/app-f211e6575c.js
  function trayPiechart (line 36) | function trayPiechart(d3) {
  function tray (line 112) | function tray() {
  function trayBarchart (line 193) | function trayBarchart(d3) {
  function tools (line 255) | function tools() {
  function timelines (line 288) | function timelines() {
  function survival (line 846) | function survival() {
  function sunburst (line 1119) | function sunburst() {
  function spreadsheet (line 1560) | function spreadsheet() {
  function explore (line 1758) | function explore() {
  function explore (line 2068) | function explore() {
  function pathways (line 3004) | function pathways() {
  function parallelcoord (line 3402) | function parallelcoord() {
  function osSound (line 3640) | function osSound() {
  function oncoscape (line 3662) | function oncoscape($http) {
  function osAuth (line 3737) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 3910) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 4875) | function markers() {
  function login (line 6161) | function login() {
  function login (line 6203) | function login() {
  function layoutPanel (line 6224) | function layoutPanel() {
  function landing (line 6523) | function landing() {
  function help (line 6566) | function help() {
  function heatmap (line 6592) | function heatmap() {
  function header (line 6960) | function header() {
  function geneMenu (line 7090) | function geneMenu() {
  function genedashboard (line 7280) | function genedashboard() {
  function datasource (line 7659) | function datasource() {
  function compareCluster (line 7690) | function compareCluster() {
  function colorPanel (line 7981) | function colorPanel() {
  function collectionPanel (line 8296) | function collectionPanel() {
  function cohortMenu (line 8358) | function cohortMenu() {
  function barchart (line 8619) | function barchart() {
  function runBlock (line 8813) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 8835) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 9105) | function config($logProvider) {

FILE: client-build/scripts/app-f34b7f2d5b.js
  function trayPiechart (line 36) | function trayPiechart(d3) {
  function tray (line 112) | function tray() {
  function trayBarchart (line 193) | function trayBarchart(d3) {
  function tools (line 255) | function tools() {
  function timelines (line 288) | function timelines() {
  function survival (line 846) | function survival() {
  function sunburst (line 1119) | function sunburst() {
  function spreadsheet (line 1560) | function spreadsheet() {
  function explore (line 1758) | function explore() {
  function explore (line 2068) | function explore() {
  function pathways (line 3004) | function pathways() {
  function osSound (line 3402) | function osSound() {
  function oncoscape (line 3424) | function oncoscape($http) {
  function osAuth (line 3497) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 3670) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 4635) | function markers() {
  function login (line 5921) | function login() {
  function login (line 5963) | function login() {
  function layoutPanel (line 5984) | function layoutPanel() {
  function landing (line 6283) | function landing() {
  function help (line 6326) | function help() {
  function heatmap (line 6352) | function heatmap() {
  function header (line 6720) | function header() {
  function geneMenu (line 6850) | function geneMenu() {
  function datasource (line 7040) | function datasource() {
  function compareCluster (line 7071) | function compareCluster() {
  function colorPanel (line 7362) | function colorPanel() {
  function collectionPanel (line 7677) | function collectionPanel() {
  function cohortMenu (line 7739) | function cohortMenu() {
  function barchart (line 8000) | function barchart() {
  function runBlock (line 8194) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 8216) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 8478) | function config($logProvider) {

FILE: client-build/scripts/app-fa41109fba.js
  function userdatasource (line 36) | function userdatasource() {
  function trayPiechart (line 104) | function trayPiechart(d3) {
  function tray (line 180) | function tray() {
  function trayBarchart (line 261) | function trayBarchart(d3) {
  function tools (line 323) | function tools() {
  function timelines (line 356) | function timelines() {
  function survival (line 914) | function survival() {
  function sunburst (line 1187) | function sunburst() {
  function spreadsheet (line 1628) | function spreadsheet() {
  function explore (line 1851) | function explore() {
  function explore (line 2161) | function explore() {
  function pathways (line 3228) | function pathways() {
  function parallelcoord (line 3626) | function parallelcoord() {
  function osSound (line 3864) | function osSound() {
  function oncoscape (line 3886) | function oncoscape($http) {
  function osAuth (line 4003) | function osAuth(osHttp, $http, signals, $location, auth, osApi) {
  function osApi (line 4242) | function osApi(osHttp, $http, signals, $location, $q, jStat, $, $window,...
  function markers (line 5253) | function markers() {
  function login (line 6545) | function login() {
  function login (line 6589) | function login() {
  function layoutPanel (line 6610) | function layoutPanel() {
  function landing (line 6909) | function landing() {
  function importPanel (line 6952) | function importPanel() {
  function help (line 7005) | function help() {
  function heatmap (line 7031) | function heatmap() {
  function header (line 7649) | function header() {
  function geneMenu (line 7782) | function geneMenu() {
  function genedashboard (line 7885) | function genedashboard() {
  function datasource (line 8264) | function datasource() {
  function compareCluster (line 8295) | function compareCluster() {
  function colorPanel (line 8586) | function colorPanel() {
  function collectionPanel (line 8934) | function collectionPanel() {
  function cohortMenu (line 8996) | function cohortMenu() {
  function barchart (line 9257) | function barchart() {
  function runBlock (line 9451) | function runBlock($window, $exceptionHandler) { //, $log
  function routerConfig (line 9473) | function routerConfig($stateProvider, $urlRouterProvider) {
  function config (line 9750) | function config($logProvider) {

FILE: client-build/scripts/vendor-02f3257444.js
  function DOMEval (line 76) | function DOMEval( code, doc ) {
  function isArrayLike (line 528) | function isArrayLike( obj ) {
  function Sizzle (line 760) | function Sizzle( selector, context, results, seed ) {
  function createCache (line 899) | function createCache() {
  function markFunction (line 917) | function markFunction( fn ) {
  function assert (line 926) | function assert( fn ) {
  function addHandle (line 948) | function addHandle( attrs, handler ) {
  function siblingCheck (line 963) | function siblingCheck( a, b ) {
  function createInputPseudo (line 989) | function createInputPseudo( type ) {
  function createButtonPseudo (line 1000) | function createButtonPseudo( type ) {
  function createDisabledPseudo (line 1011) | function createDisabledPseudo( disabled ) {
  function createPositionalPseudo (line 1067) | function createPositionalPseudo( fn ) {
  function testContext (line 1090) | function testContext( context ) {
  function setFilters (line 2172) | function setFilters() {}
  function toSelector (line 2243) | function toSelector( tokens ) {
  function addCombinator (line 2253) | function addCombinator( matcher, combinator, base ) {
  function elementMatcher (line 2317) | function elementMatcher( matchers ) {
  function multipleContexts (line 2331) | function multipleContexts( selector, contexts, results ) {
  function condense (line 2340) | function condense( unmatched, map, filter, context, xml ) {
  function setMatcher (line 2361) | function setMatcher( preFilter, selector, matcher, postFilter, postFinde...
  function matcherFromTokens (line 2454) | function matcherFromTokens( tokens ) {
  function matcherFromGroupMatchers (line 2512) | function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
  function winnow (line 2853) | function winnow( elements, qualifier, not ) {
  function sibling (line 3156) | function sibling( cur, dir ) {
  function createOptions (line 3232) | function createOptions( options ) {
  function Identity (line 3457) | function Identity( v ) {
  function Thrower (line 3460) | function Thrower( ex ) {
  function adoptValue (line 3464) | function adoptValue( value, resolve, reject ) {
  function resolve (line 3556) | function resolve( depth, deferred, handler, special ) {
  function completed (line 3922) | function completed() {
  function Data (line 4024) | function Data() {
  function getData (line 4193) | function getData( data ) {
  function dataAttr (line 4218) | function dataAttr( elem, key, data ) {
  function adjustCSS (line 4531) | function adjustCSS( elem, prop, valueParts, tween ) {
  function getDefaultDisplay (line 4596) | function getDefaultDisplay( elem ) {
  function showHide (line 4619) | function showHide( elements, show ) {
  function getAll (line 4720) | function getAll( context, tag ) {
  function setGlobalEval (line 4745) | function setGlobalEval( elems, refElements ) {
  function buildFragment (line 4761) | function buildFragment( elems, context, scripts, selection, ignored ) {
  function returnTrue (line 4884) | function returnTrue() {
  function returnFalse (line 4888) | function returnFalse() {
  function safeActiveElement (line 4894) | function safeActiveElement() {
  function on (line 4900) | function on( elem, types, selector, data, fn, one ) {
  function manipulationTarget (line 5628) | function manipulationTarget( elem, content ) {
  function disableScript (line 5639) | function disableScript( elem ) {
  function restoreScript (line 5643) | function restoreScript( elem ) {
  function cloneCopyEvent (line 5655) | function cloneCopyEvent( src, dest ) {
  function fixInput (line 5690) | function fixInput( src, dest ) {
  function domManip (line 5703) | function domManip( collection, args, callback, ignored ) {
  function remove (line 5793) | function remove( elem, selector, keepData ) {
  function computeStyleTests (line 6086) | function computeStyleTests() {
  function curCSS (line 6160) | function curCSS( elem, name, computed ) {
  function addGetHookIf (line 6207) | function addGetHookIf( conditionFn, hookFn ) {
  function vendorPropName (line 6243) | function vendorPropName( name ) {
  function setPositiveNumber (line 6262) | function setPositiveNumber( elem, value, subtract ) {
  function augmentWidthOrHeight (line 6274) | function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {
  function getWidthOrHeight (line 6320) | function getWidthOrHeight( elem, name, extra ) {
  function Tween (line 6628) | function Tween( elem, options, prop, end, easing ) {
  function raf (line 6751) | function raf() {
  function createFxNow (line 6759) | function createFxNow() {
  function genFx (line 6767) | function genFx( type, includeWidth ) {
  function createTween (line 6787) | function createTween( value, prop, animation ) {
  function defaultPrefilter (line 6801) | function defaultPrefilter( elem, props, opts ) {
  function propFilter (line 6972) | function propFilter( props, specialEasing ) {
  function Animation (line 7009) | function Animation( elem, properties, options ) {
  function stripAndCollapse (line 7723) | function stripAndCollapse( value ) {
  function getClass (line 7729) | function getClass( elem ) {
  function buildParams (line 8353) | function buildParams( prefix, obj, traditional, add ) {
  function addToPrefiltersOrTransports (line 8503) | function addToPrefiltersOrTransports( structure ) {
  function inspectPrefiltersOrTransports (line 8537) | function inspectPrefiltersOrTransports( structure, options, originalOpti...
  function ajaxExtend (line 8566) | function ajaxExtend( target, src ) {
  function ajaxHandleResponses (line 8586) | function ajaxHandleResponses( s, jqXHR, responses ) {
  function ajaxConvert (line 8644) | function ajaxConvert( s, response, jqXHR, isSuccess ) {
  function done (line 9157) | function done( status, nativeStatusText, responses, headers ) {
  function getWindow (line 9882) | function getWindow( elem ) {
  function minErr (line 10259) | function minErr(module, ErrorConstructor) {
  function isArrayLike (line 10490) | function isArrayLike(obj) {
  function forEach (line 10547) | function forEach(obj, iterator, context) {
  function forEachSorted (line 10591) | function forEachSorted(obj, iterator, context) {
  function reverseParams (line 10605) | function reverseParams(iteratorFn) {
  function nextUid (line 10619) | function nextUid() {
  function setHashKey (line 10629) | function setHashKey(obj, h) {
  function baseExtend (line 10638) | function baseExtend(dst, objs, deep) {
  function extend (line 10690) | function extend(dst) {
  function merge (line 10713) | function merge(dst) {
  function toInt (line 10719) | function toInt(str) {
  function inherit (line 10724) | function inherit(parent, extra) {
  function noop (line 10744) | function noop() {}
  function identity (line 10776) | function identity($) {return $;}
  function valueFn (line 10780) | function valueFn(value) {return function() {return value;};}
  function hasCustomToString (line 10782) | function hasCustomToString(obj) {
  function isUndefined (line 10799) | function isUndefined(value) {return typeof value === 'undefined';}
  function isDefined (line 10814) | function isDefined(value) {return typeof value !== 'undefined';}
  function isObject (line 10830) | function isObject(value) {
  function isBlankObject (line 10841) | function isBlankObject(value) {
  function isString (line 10858) | function isString(value) {return typeof value === 'string';}
  function isNumber (line 10879) | function isNumber(value) {return typeof value === 'number';}
  function isDate (line 10894) | function isDate(value) {
  function isFunction (line 10925) | function isFunction(value) {return typeof value === 'function';}
  function isRegExp (line 10935) | function isRegExp(value) {
  function isWindow (line 10947) | function isWindow(obj) {
  function isScope (line 10952) | function isScope(obj) {
  function isFile (line 10957) | function isFile(obj) {
  function isFormData (line 10962) | function isFormData(obj) {
  function isBlob (line 10967) | function isBlob(obj) {
  function isBoolean (line 10972) | function isBoolean(value) {
  function isPromiseLike (line 10977) | function isPromiseLike(obj) {
  function isTypedArray (line 10983) | function isTypedArray(value) {
  function isElement (line 11013) | function isElement(node) {
  function makeMap (line 11023) | function makeMap(str) {
  function nodeName_ (line 11032) | function nodeName_(element) {
  function includes (line 11036) | function includes(array, obj) {
  function arrayRemove (line 11040) | function arrayRemove(array, value) {
  function copy (line 11106) | function copy(source, destination) {
  function shallowCopy (line 11220) | function shallowCopy(src, dst) {
  function equals (line 11270) | function equals(o1, o2) {
  function noUnsafeEval (line 11336) | function noUnsafeEval() {
  function concat (line 11401) | function concat(array1, array2, index) {
  function sliceArgs (line 11405) | function sliceArgs(args, startIndex) {
  function bind (line 11429) | function bind(self, fn) {
  function toJsonReplacer (line 11450) | function toJsonReplacer(key, value) {
  function toJson (line 11482) | function toJson(obj, pretty) {
  function fromJson (line 11503) | function fromJson(json) {
  function timezoneToOffset (line 11511) | function timezoneToOffset(timezone, fallback) {
  function addDateMinutes (line 11519) | function addDateMinutes(date, minutes) {
  function convertTimezoneToLocal (line 11526) | function convertTimezoneToLocal(date, timezone, reverse) {
  function startingTag (line 11537) | function startingTag(element) {
  function tryDecodeURIComponent (line 11567) | function tryDecodeURIComponent(value) {
  function parseKeyValue (line 11580) | function parseKeyValue(/**string*/keyValue) {
  function toKeyValue (line 11607) | function toKeyValue(obj) {
  function encodeUriSegment (line 11635) | function encodeUriSegment(val) {
  function encodeUriQuery (line 11654) | function encodeUriQuery(val, pctEncodeSpaces) {
  function getNgAttribute (line 11666) | function getNgAttribute(element, ngAttr) {
  function angularInit (line 11804) | function angularInit(element, bootstrap) {
  function bootstrap (line 11883) | function bootstrap(element, modules, config) {
  function reloadWithDebugInfo (line 11961) | function reloadWithDebugInfo() {
  function getTestability (line 11974) | function getTestability(rootElement) {
  function snake_case (line 11984) | function snake_case(name, separator) {
  function bindJQuery (line 11993) | function bindJQuery() {
  function assertArg (line 12051) | function assertArg(arg, name, reason) {
  function assertArgFn (line 12058) | function assertArgFn(arg, name, acceptArrayAnnotation) {
  function assertNotHasOwnProperty (line 12073) | function assertNotHasOwnProperty(name, context) {
  function getter (line 12087) | function getter(obj, path, bindFnToScope) {
  function getBlockNodes (line 12111) | function getBlockNodes(nodes) {
  function createMap (line 12141) | function createMap() {
  function setupModuleLoader (line 12161) | function setupModuleLoader(window) {
  function serializeObject (line 12503) | function serializeObject(obj) {
  function toDebugString (line 12518) | function toDebugString(obj) {
  function publishExternalAPI (line 12649) | function publishExternalAPI(angular) {
  function jqNextId (line 12925) | function jqNextId() { return ++jqId; }
  function camelCase (line 12938) | function camelCase(name) {
  function jqLiteIsTextNode (line 12966) | function jqLiteIsTextNode(html) {
  function jqLiteAcceptsData (line 12970) | function jqLiteAcceptsData(node) {
  function jqLiteHasData (line 12977) | function jqLiteHasData(node) {
  function jqLiteBuildFragment (line 12984) | function jqLiteBuildFragment(html, context) {
  function jqLiteParseHTML (line 13021) | function jqLiteParseHTML(html, context) {
  function jqLiteWrapNode (line 13036) | function jqLiteWrapNode(node, wrapper) {
  function JQLite (line 13055) | function JQLite(element) {
  function jqLiteClone (line 13080) | function jqLiteClone(element) {
  function jqLiteDealoc (line 13084) | function jqLiteDealoc(element, onlyDescendants) {
  function jqLiteOff (line 13095) | function jqLiteOff(element, type, fn, unsupported) {
  function jqLiteRemoveData (line 13133) | function jqLiteRemoveData(element, name) {
  function jqLiteExpandoStore (line 13155) | function jqLiteExpandoStore(element, createIfNecessary) {
  function jqLiteData (line 13168) | function jqLiteData(element, key, value) {
  function jqLiteHasClass (line 13194) | function jqLiteHasClass(element, selector) {
  function jqLiteRemoveClass (line 13200) | function jqLiteRemoveClass(element, cssClasses) {
  function jqLiteAddClass (line 13212) | function jqLiteAddClass(element, cssClasses) {
  function jqLiteAddNodes (line 13229) | function jqLiteAddNodes(root, elements) {
  function jqLiteController (line 13255) | function jqLiteController(element, name) {
  function jqLiteInheritedData (line 13259) | function jqLiteInheritedData(element, name, value) {
  function jqLiteEmpty (line 13279) | function jqLiteEmpty(element) {
  function jqLiteRemove (line 13286) | function jqLiteRemove(element, keepData) {
  function jqLiteDocumentLoaded (line 13293) | function jqLiteDocumentLoaded(action, win) {
  function trigger (line 13313) | function trigger() {
  function getBooleanAttrName (line 13367) | function getBooleanAttrName(element, name) {
  function getAliasedAttrName (line 13375) | function getAliasedAttrName(name) {
  function getText (line 13467) | function getText(element, value) {
  function createEventHandler (line 13552) | function createEventHandler(element, events) {
  function defaultHandlerWrapper (line 13604) | function defaultHandlerWrapper(element, event, handler) {
  function specialMouseHandlerWrapper (line 13608) | function specialMouseHandlerWrapper(target, event, handler) {
  function $$jqLiteProvider (line 13855) | function $$jqLiteProvider() {
  function hashKey (line 13886) | function hashKey(obj, nextUidFn) {
  function HashMap (line 13909) | function HashMap(array, isolatedUid) {
  function anonFn (line 14021) | function anonFn(fn) {
  function annotate (line 14032) | function annotate(fn, strictDi, name) {
  function createInjector (line 14581) | function createInjector(modulesToLoad, strictDi) {
  function $AnchorScrollProvider (line 14826) | function $AnchorScrollProvider() {
  function mergeClasses (line 15093) | function mergeClasses(a,b) {
  function extractElementNode (line 15102) | function extractElementNode(element) {
  function splitClasses (line 15111) | function splitClasses(classes) {
  function prepareAnimateOptions (line 15136) | function prepareAnimateOptions(options) {
  function updateData (line 15181) | function updateData(data, classes, value) {
  function handleCSSClassChanges (line 15196) | function handleCSSClassChanges() {
  function addRemoveClassesPostDigest (line 15225) | function addRemoveClassesPostDigest(element, add, remove) {
  function domInsert (line 15339) | function domInsert(element, parentElement, afterElement) {
  function waitForTick (line 15686) | function waitForTick(fn) {
  function next (line 15721) | function next() {
  function onProgress (line 15745) | function onProgress(response) {
  function AnimateRunner (line 15753) | function AnimateRunner(host) {
  function run (line 15909) | function run() {
  function applyAnimationContents (line 15920) | function applyAnimationContents() {
  function Browser (line 15961) | function Browser(window, document, $log, $sniffer) {
  function $BrowserProvider (line 16291) | function $BrowserProvider() {
  function $CacheFactoryProvider (line 16379) | function $CacheFactoryProvider() {
  function $TemplateCacheProvider (line 16694) | function $TemplateCacheProvider() {
  function $CompileProvider (line 17465) | function $CompileProvider($provide, $$sanitizeUriProvider) {
  function directiveNormalize (line 19434) | function directiveNormalize(name) {
  function nodesetLinkingFn (line 19483) | function nodesetLinkingFn(
  function directiveLinkingFn (line 19490) | function directiveLinkingFn(
  function tokenDifference (line 19498) | function tokenDifference(str1, str2) {
  function removeComments (line 19514) | function removeComments(jqNodes) {
  function identifierForController (line 19535) | function identifierForController(controller, ident) {
  function $ControllerProvider (line 19554) | function $ControllerProvider() {
  function $DocumentProvider (line 19727) | function $DocumentProvider() {
  function $ExceptionHandlerProvider (line 19773) | function $ExceptionHandlerProvider() {
  function serializeValue (line 19819) | function serializeValue(v) {
  function $HttpParamSerializerProvider (line 19827) | function $HttpParamSerializerProvider() {
  function $HttpParamSerializerJQLikeProvider (line 19864) | function $HttpParamSerializerJQLikeProvider() {
  function defaultHttpResponseTransform (line 19936) | function defaultHttpResponseTransform(data, headers) {
  function isJsonLike (line 19952) | function isJsonLike(str) {
  function parseHeaders (line 19963) | function parseHeaders(headers) {
  function headersGetter (line 19999) | function headersGetter(headers) {
  function transformData (line 20029) | function transformData(data, headers, status, fns) {
  function isSuccess (line 20042) | function isSuccess(status) {
  function $HttpProvider (line 20053) | function $HttpProvider() {
  function $xhrFactoryProvider (line 21155) | function $xhrFactoryProvider() {
  function $HttpBackendProvider (line 21180) | function $HttpBackendProvider() {
  function createHttpBackend (line 21186) | function createHttpBackend($browser, createXhr, $browserDefer, callbacks...
  function $InterpolateProvider (line 21380) | function $InterpolateProvider() {
  function $IntervalProvider (line 21688) | function $IntervalProvider() {
  function encodePath (line 21900) | function encodePath(path) {
  function parseAbsoluteUrl (line 21911) | function parseAbsoluteUrl(absoluteUrl, locationObj) {
  function parseAppUrl (line 21920) | function parseAppUrl(relativeUrl, locationObj) {
  function beginsWith (line 21945) | function beginsWith(begin, whole) {
  function stripHash (line 21952) | function stripHash(url) {
  function trimEmptyHash (line 21957) | function trimEmptyHash(url) {
  function stripFile (line 21962) | function stripFile(url) {
  function serverBase (line 21967) | function serverBase(url) {
  function LocationHtml5Url (line 21981) | function LocationHtml5Url(appBase, appBaseNoFile, basePrefix) {
  function LocationHashbangUrl (line 22060) | function LocationHashbangUrl(appBase, appBaseNoFile, hashPrefix) {
  function LocationHashbangInHtml5Url (line 22172) | function LocationHashbangInHtml5Url(appBase, appBaseNoFile, hashPrefix) {
  function locationGetter (line 22536) | function locationGetter(property) {
  function locationGetterSetter (line 22543) | function locationGetterSetter(property, preprocess) {
  function $LocationProvider (line 22589) | function $LocationProvider() {
  function $LogProvider (line 22923) | function $LogProvider() {
  function ensureSafeMemberName (line 23079) | function ensureSafeMemberName(name, fullExpression) {
  function getStringValue (line 23090) | function getStringValue(name, fullExpression) {
  function ensureSafeObject (line 23109) | function ensureSafeObject(obj, fullExpression) {
  function ensureSafeFunction (line 23140) | function ensureSafeFunction(obj, fullExpression) {
  function ensureSafeAssignContext (line 23154) | function ensureSafeAssignContext(obj, fullExpression) {
  function ifDefined (line 23671) | function ifDefined(v, d) {
  function plusFn (line 23675) | function plusFn(l, r) {
  function isStateless (line 23681) | function isStateless($filter, filterName) {
  function findConstantAndWatchExpressions (line 23686) | function findConstantAndWatchExpressions(ast, $filter) {
  function getInputs (line 23790) | function getInputs(body) {
  function isAssignable (line 23798) | function isAssignable(ast) {
  function assignableAST (line 23802) | function assignableAST(ast) {
  function isLiteral (line 23808) | function isLiteral(ast) {
  function isConstant (line 23816) | function isConstant(ast) {
  function ASTCompiler (line 23820) | function ASTCompiler(astBuilder, $filter) {
  function ASTInterpreter (line 24315) | function ASTInterpreter(astBuilder, $filter) {
  function isPossiblyDangerousMemberName (line 24711) | function isPossiblyDangerousMemberName(name) {
  function getValueOf (line 24717) | function getValueOf(value) {
  function $ParseProvider (line 24772) | function $ParseProvider() {
  function $QProvider (line 25240) | function $QProvider() {
  function $$QProvider (line 25249) | function $$QProvider() {
  function qFactory (line 25265) | function qFactory(nextTick, exceptionHandler) {
  function $$RAFProvider (line 25619) | function $$RAFProvider() { //rAF
  function $RootScopeProvider (line 25716) | function $RootScopeProvider() {
  function $$SanitizeUriProvider (line 27035) | function $$SanitizeUriProvider() {
  function adjustMatcher (line 27126) | function adjustMatcher(matcher) {
  function adjustMatchers (line 27154) | function adjustMatchers(matchers) {
  function $SceDelegateProvider (line 27232) | function $SceDelegateProvider() {
  function $SceProvider (line 27764) | function $SceProvider() {
  function $SnifferProvider (line 28176) | function $SnifferProvider() {
  function $TemplateRequestProvider (line 28270) | function $TemplateRequestProvider() {
  function $$TestabilityProvider (line 28323) | function $$TestabilityProvider() {
  function $TimeoutProvider (line 28438) | function $TimeoutProvider() {
  function urlResolve (line 28589) | function urlResolve(url) {
  function urlIsSameOrigin (line 28623) | function urlIsSameOrigin(requestUrl) {
  function $WindowProvider (line 28670) | function $WindowProvider() {
  function $$CookieReader (line 28683) | function $$CookieReader($document) {
  function $$CookieReaderProvider (line 28725) | function $$CookieReaderProvider() {
  function $FilterProvider (line 28829) | function $FilterProvider($provide) {
  function filterFilter (line 29019) | function filterFilter() {
  function createPredicateFn (line 29056) | function createPredicateFn(expression, comparator, matchAgainstAnyProp) {
  function deepCompare (line 29093) | function deepCompare(actual, expected, comparator, matchAgainstAnyProp, ...
  function getTypeForFilter (line 29143) | function getTypeForFilter(val) {
  function currencyFilter (line 29204) | function currencyFilter($locale) {
  function numberFilter (line 29278) | function numberFilter($locale) {
  function parse (line 29303) | function parse(numStr) {
  function roundNumber (line 29358) | function roundNumber(parsedNumber, fractionSize, minFrac, maxFrac) {
  function formatNumber (line 29414) | function formatNumber(number, pattern, groupSep, decimalSep, fractionSiz...
  function padNumber (line 29480) | function padNumber(num, digits, trim) {
  function dateGetter (line 29495) | function dateGetter(name, size, offset, trim) {
  function dateStrGetter (line 29507) | function dateStrGetter(name, shortForm) {
  function timeZoneGetter (line 29516) | function timeZoneGetter(date, formats, offset) {
  function getFirstThursdayOfYear (line 29526) | function getFirstThursdayOfYear(year) {
  function getThursdayThisWeek (line 29534) | function getThursdayThisWeek(datetime) {
  function weekGetter (line 29540) | function weekGetter(size) {
  function ampmGetter (line 29552) | function ampmGetter(date, formats) {
  function eraGetter (line 29556) | function eraGetter(date, formats) {
  function longEraGetter (line 29560) | function longEraGetter(date, formats) {
  function dateFilter (line 29694) | function dateFilter($locale) {
  function jsonFilter (line 29801) | function jsonFilter() {
  function limitToFilter (line 29930) | function limitToFilter() {
  function orderByFilter (line 30151) | function orderByFilter($parse) {
  function ngDirective (line 30269) | function ngDirective(directive) {
  function defaultLinkFn (line 30648) | function defaultLinkFn(scope, element, attr) {
  function nullFormRenameControl (line 30750) | function nullFormRenameControl(control, name) {
  function FormController (line 30798) | function FormController(element, attrs, $scope, $animate, $interpolate) {
  function getSetter (line 31272) | function getSetter(expression) {
  function stringBasedInputType (line 32379) | function stringBasedInputType(ctrl) {
  function textInputType (line 32385) | function textInputType(scope, element, attr, ctrl, $sniffer, $browser) {
  function baseInputType (line 32390) | function baseInputType(scope, element, attr, ctrl, $sniffer, $browser) {
  function weekParser (line 32500) | function weekParser(isoWeek, existingDate) {
  function createDateParser (line 32532) | function createDateParser(regexp, mapping) {
  function createDateInputType (line 32582) | function createDateInputType(type, regexp, parseDate, format) {
  function badInputChecker (line 32654) | function badInputChecker(scope, element, attr, ctrl) {
  function numberInputType (line 32669) | function numberInputType(scope, element, attr, ctrl, $sniffer, $browser) {
  function urlInputType (line 32723) | function urlInputType(scope, element, attr, ctrl, $sniffer, $browser) {
  function emailInputType (line 32736) | function emailInputType(scope, element, attr, ctrl, $sniffer, $browser) {
  function radioInputType (line 32749) | function radioInputType(scope, element, attr, ctrl) {
  function parseConstantExpr (line 32771) | function parseConstantExpr($parse, context, name, expression, fallback) {
  function checkboxInputType (line 32784) | function checkboxInputType(scope, element, attr, ctrl, $sniffer, $browse...
  function classDirective (line 33368) | function classDirective(name, selector) {
  function processParseErrors (line 35954) | function processParseErrors() {
  function processSyncValidators (line 35974) | function processSyncValidators() {
  function processAsyncValidators (line 35990) | function processAsyncValidators() {
  function setValidity (line 36016) | function setValidity(name, isValid) {
  function validationDone (line 36022) | function validationDone(allValid) {
  function writeToModelIfNeeded (line 36101) | function writeToModelIfNeeded() {
  function addSetValidityMethod (line 36672) | function addSetValidityMethod(context) {
  function isObjectEmpty (line 36766) | function isObjectEmpty(obj) {
  function parseOptionsExpression (line 37058) | function parseOptionsExpression(optionsExp, selectElement, scope) {
  function ngOptionsPostLink (line 37221) | function ngOptionsPostLink(scope, selectElement, attr, ctrls) {
  function updateElementText (line 37812) | function updateElementText(newText) {
  function chromeHack (line 39071) | function chromeHack(optionElement) {
  function selectPreLink (line 39433) | function selectPreLink(scope, element, attr, ctrls) {
  function selectPostLink (line 39497) | function selectPostLink(scope, element, attrs, ctrls) {
  function getDecimals (line 39926) | function getDecimals(n) {
  function getVF (line 39932) | function getVF(n, opt_precision) {
  function assertArg (line 40155) | function assertArg(arg, name, reason) {
  function mergeClasses (line 40162) | function mergeClasses(a,b) {
  function packageStyles (line 40171) | function packageStyles(options) {
  function pendClasses (line 40180) | function pendClasses(classes, fix, isPrefix) {
  function removeFromArray (line 40197) | function removeFromArray(arr, val) {
  function stripCommentsFromElement (line 40204) | function stripCommentsFromElement(element) {
  function extractElementNode (line 40231) | function extractElementNode(element) {
  function $$addClass (line 40241) | function $$addClass($$jqLite, element, className) {
  function $$removeClass (line 40247) | function $$removeClass($$jqLite, element, className) {
  function applyAnimationClassesFactory (line 40253) | function applyAnimationClassesFactory($$jqLite) {
  function prepareAnimationOptions (line 40266) | function prepareAnimationOptions(options) {
  function applyAnimationStyles (line 40280) | function applyAnimationStyles(element, options) {
  function applyAnimationFromStyles (line 40285) | function applyAnimationFromStyles(element, options) {
  function applyAnimationToStyles (line 40292) | function applyAnimationToStyles(element, options) {
  function mergeAnimationDetails (line 40299) | function mergeAnimationDetails(element, oldAnimation, newAnimation) {
  function resolveElementClasses (line 40340) | function resolveElementClasses(existing, toAdd, toRemove) {
  function getDomNode (line 40398) | function getDomNode(element) {
  function applyGeneratedPreparationClasses (line 40402) | function applyGeneratedPreparationClasses(element, event, options) {
  function clearGeneratedClasses (line 40419) | function clearGeneratedClasses(element, options) {
  function blockTransitions (line 40430) | function blockTransitions(node, duration) {
  function blockKeyframeAnimations (line 40439) | function blockKeyframeAnimations(node, applyBlock) {
  function applyInlineStyle (line 40446) | function applyInlineStyle(node, styleTuple) {
  function concatWithSpace (line 40452) | function concatWithSpace(a,b) {
  function scheduler (line 40461) | function scheduler(tasks) {
  function nextTick (line 40491) | function nextTick() {
  function setData (line 40598) | function setData(value) {
  function getCssKeyframeDurationStyle (line 40844) | function getCssKeyframeDurationStyle(duration) {
  function getCssDelayStyle (line 40848) | function getCssDelayStyle(delay, isKeyframeAnimation) {
  function computeCssStyles (line 40853) | function computeCssStyles($window, element, properties) {
  function parseMaxTime (line 40879) | function parseMaxTime(str) {
  function truthyTimingValue (line 40894) | function truthyTimingValue(val) {
  function getCssTransitionDurationStyle (line 40898) | function getCssTransitionDurationStyle(duration, applyOnlyDuration) {
  function createLocalCacheLookup (line 40909) | function createLocalCacheLookup() {
  function registerRestorableStyles (line 40945) | function registerRestorableStyles(backup, node, properties) {
  function gcsHashFn (line 40965) | function gcsHashFn(node, extraClasses) {
  function computeCachedCssStyles (line 40972) | function computeCachedCssStyles(node, className, cacheKey, properties) {
  function computeCachedCssStaggerStyles (line 40988) | function computeCachedCssStaggerStyles(node, className, cacheKey, proper...
  function waitUntilQuiet (line 41019) | function waitUntilQuiet(callback) {
  function computeTimings (line 41038) | function computeTimings(node, className, cacheKey) {
  function endFn (line 41308) | function endFn() {
  function cancelFn (line 41312) | function cancelFn() {
  function close (line 41316) | function close(rejected) { // jshint ignore:line
  function applyBlocking (line 41375) | function applyBlocking(duration) {
  function closeAndReturnNoopAnimator (line 41385) | function closeAndReturnNoopAnimator() {
  function onAnimationProgress (line 41404) | function onAnimationProgress(event) {
  function start (line 41431) | function start() {
  function isDocumentFragment (line 41617) | function isDocumentFragment(node) {
  function filterCssClasses (line 41648) | function filterCssClasses(classes) {
  function getUniqueValues (line 41653) | function getUniqueValues(a, b) {
  function prepareAnchoredAnimation (line 41661) | function prepareAnchoredAnimation(classes, outAnchor, inAnchor) {
  function prepareFromToAnchorAnimation (line 41788) | function prepareFromToAnchorAnimation(from, to, classes, anchors) {
  function prepareRegularAnimation (line 41841) | function prepareRegularAnimation(animationDetails) {
  function applyOptions (line 41936) | function applyOptions() {
  function close (line 41941) | function close() {
  function onComplete (line 42003) | function onComplete(success) {
  function endAnimations (line 42008) | function endAnimations(cancelled) {
  function executeAnimationFn (line 42017) | function executeAnimationFn(fn, element, event, options, onDone) {
  function groupEventedAnimations (line 42060) | function groupEventedAnimations(element, event, options, animations, fnN...
  function packageAnimations (line 42101) | function packageAnimations(element, event, options, animations, fnName) {
  function lookupAnimations (line 42143) | function lookupAnimations(classes) {
  function endFnFactory (line 42189) | function endFnFactory() {
  function done (line 42198) | function done(status) {
  function prepareAnimation (line 42208) | function prepareAnimation(animationDetails) {
  function makeTruthyCssClassMap (line 42232) | function makeTruthyCssClassMap(classString) {
  function hasMatchingClasses (line 42246) | function hasMatchingClasses(newClassString, currentClassString) {
  function isAllowed (line 42255) | function isAllowed(ruleType, element, currentAnimation, previousAnimatio...
  function hasAnimationClasses (line 42261) | function hasAnimationClasses(animation, and) {
  function postDigestTaskFactory (line 42326) | function postDigestTaskFactory() {
  function normalizeAnimationDetails (line 42386) | function normalizeAnimationDetails(element, animation) {
  function findCallbacks (line 42397) | function findCallbacks(parent, element, event) {
  function filterFromRegistry (line 42434) | function filterFromRegistry(list, matchContainer, matchCallback) {
  function queueAnimation (line 42491) | function queueAnimation(element, event, initialOptions) {
  function closeChildAnimations (line 42768) | function closeChildAnimations(element) {
  function clearElementAnimationState (line 42787) | function clearElementAnimationState(element) {
  function isMatchingElement (line 42793) | function isMatchingElement(nodeOrElmA, nodeOrElmB) {
  function areAnimationsAllowed (line 42804) | function areAnimationsAllowed(element, parentElement, event) {
  function markElementAnimationState (line 42889) | function markElementAnimationState(element, state, details) {
  function setRunner (line 42912) | function setRunner(element, runner) {
  function removeRunner (line 42916) | function removeRunner(element) {
  function getRunner (line 42920) | function getRunner(element) {
  function sortAnimations (line 42930) | function sortAnimations(animations) {
  function getAnchorNodes (line 43130) | function getAnchorNodes(node) {
  function groupAnimations (line 43145) | function groupAnimations(animations) {
  function cssClassesIntersection (line 43228) | function cssClassesIntersection(a,b) {
  function invokeFirstDriver (line 43248) | function invokeFirstDriver(animationDetails) {
  function beforeStart (line 43263) | function beforeStart() {
  function updateAnimationRunners (line 43274) | function updateAnimationRunners(animation, newRunner) {
  function handleDestroyedElement (line 43287) | function handleDestroyedElement() {
  function close (line 43294) | function close(rejected) { // jshint ignore:line
  function calcOptions (line 44149) | function calcOptions(options) {
  function $$CookieWriter (line 44365) | function $$CookieWriter($document, $log, $browser) {
  function nodeName_ (line 44445) | function nodeName_(element) {
  function getCoordinates (line 44487) | function getCoordinates(event) {
  function getEvents (line 44498) | function getEvents(pointerTypes, eventType) {
  function hit (line 44714) | function hit(x1, y1, x2, y2) {
  function checkAllowableRegions (line 44721) | function checkAllowableRegions(touchCoordinates, x, y) {
  function onClick (line 44733) | function onClick(event) {
  function onTouchStart (line 44779) | function onTouchStart(event) {
  function preventGhostClick (line 44798) | function preventGhostClick(x, y) {
  function resetState (line 44819) | function resetState() {
  function makeSwipeDirective (line 44978) | function makeSwipeDirective(directiveName, direction, eventName) {
  function $SanitizeProvider (line 45194) | function $SanitizeProvider() {
  function sanitizeText (line 45206) | function sanitizeText(chars) {
  function makeMap (line 45305) | function makeMap(str, lowercaseKeys) {
  function htmlParser (line 45326) | function htmlParser(html, handler) {
  function decodeEntities (line 45482) | function decodeEntities(value) {
  function encodeEntities (line 45498) | function encodeEntities(value) {
  function htmlSanitizeWriter (line 45523) | function htmlSanitizeWriter(buf, uriValidator) {
  function addText (line 45702) | function addText(text) {
  function addLink (line 45709) | function addLink(url, text) {
  function findPreviousMessage (line 46183) | function findPreviousMessage(parent, comment) {
  function insertMessageNode (line 46207) | function insertMessageNode(parent, comment, key) {
  function removeMessageNode (line 46223) | function removeMessageNode(parent, comment, key) {
  function isAttrTruthy (line 46236) | function isAttrTruthy(scope, attr) {
  function truthy (line 46241) | function truthy(val) {
  function ngMessageDirectiveFactory (line 46366) | function ngMessageDirectiveFactory(restrict) {
  function $AriaProvider (line 46536) | function $AriaProvider() {
  function shouldAttachAttr (line 46653) | function shouldAttachAttr(attr, normalizedAttr, elem) {
  function shouldAttachRole (line 46657) | function shouldAttachRole(role, elem) {
  function getShape (line 46661) | function getShape(attr, elem) {
  function ngAriaWatchModelValue (line 46691) | function ngAriaWatchModelValue() {
  function getRadioReaction (line 46695) | function getRadioReaction() {
  function ngAriaCheckboxReaction (line 46710) | function ngAriaCheckboxReaction() {
  function callback (line 46824) | function callback() {
  function toastr (line 46853) | function toastr($animate, $injector, $document, $rootScope, $sce, toastr...
  function progressBar (line 47166) | function progressBar(toastrConfig) {
  function ToastController (line 47216) | function ToastController() {
  function toast (line 47241) | function toast($injector, $interval, toastrConfig, toastr) {
  function isValidDottedPath (line 47344) | function isValidDottedPath(path) {
  function lookupDottedPath (line 47349) | function lookupDottedPath(obj, path) {
  function shallowClearAndCopy (line 47364) | function shallowClearAndCopy(src, dst) {
  function encodeUriSegment (line 47724) | function encodeUriSegment(val) {
  function encodeUriQuery (line 47743) | function encodeUriQuery(val, pctEncodeSpaces) {
  function Route (line 47752) | function Route(template, defaults) {
  function resourceFactory (line 47825) | function resourceFactory(url, paramDefaults, actions, options) {
  function inherit (line 48052) | function inherit(parent, extra) {
  function merge (line 48056) | function merge(dst) {
  function ancestors (line 48074) | function ancestors(first, second) {
  function objectKeys (line 48090) | function objectKeys(object) {
  function indexOf (line 48109) | function indexOf(array, value) {
  function inheritParams (line 48133) | function inheritParams(currentParams, newParams, $current, $to) {
  function equalForKeys (line 48159) | function equalForKeys(a, b, keys) {
  function filterByKeys (line 48179) | function filterByKeys(keys, values) {
  function indexBy (line 48190) | function indexBy(array, propName) {
  function pick (line 48200) | function pick(obj) {
  function omit (line 48211) | function omit(obj) {
  function pluck (line 48220) | function pluck(collection, key) {
  function filter (line 48229) | function filter(collection, callback) {
  function map (line 48240) | function map(collection, callback) {
  function $Resolve (line 48343) | function $Resolve(  $q,    $injector) {
  function $TemplateFactory (line 48597) | function $TemplateFactory(  $http,   $templateCache,   $injector) {
  function UrlMatcher (line 48763) | function UrlMatcher(pattern, config, parentMatcher) {
  function decodePathArray (line 48945) | function decodePathArray(string) {
  function encodeDashes (line 49040) | function encodeDashes(str) { // Replace dashes with encoded "\-"
  function Type (line 49115) | function Type(config) {
  function ArrayType (line 49218) | function ArrayType(type, mode) {
  function $UrlMatcherFactory (line 49284) | function $UrlMatcherFactory() {
  function $UrlRouterProvider (line 49795) | function $UrlRouterProvider(   $locationProvider,   $urlMatcherFactory) {
  function $StateProvider (line 50232) | function $StateProvider(   $urlRouterProvider,   $urlMatcherFactory) {
  function $ViewProvider (line 51683) | function $ViewProvider() {
  function $ViewScrollProvider (line 51734) | function $ViewScrollProvider() {
  function $ViewDirective (line 51899) | function $ViewDirective(   $state,   $injector,   $uiViewScroll,   $inte...
  function $ViewDirectiveFill (line 52082) | function $ViewDirectiveFill (  $compile,   $controller,   $state,   $int...
  function getUiViewName (line 52123) | function getUiViewName(scope, attrs, element, $interpolate) {
  function parseStateRef (line 52132) | function parseStateRef(ref, current) {
  function stateContext (line 52140) | function stateContext(el) {
  function getTypeInfo (line 52148) | function getTypeInfo(el) {
  function clickHook (line 52160) | function clickHook(el, $state, $timeout, type, current) {
  function defaultOpts (line 52181) | function defaultOpts(el, $state) {
  function $StateRefDirective (line 52248) | function $StateRefDirective($state, $timeout) {
  function $StateRefDynamicDirective (line 52297) | function $StateRefDynamicDirective($state, $timeout) {
  function $StateRefActiveDirective (line 52419) | function $StateRefActiveDirective($state, $stateParams, $interpolate) {
  function $IsStateFilter (line 52534) | function $IsStateFilter($state) {
  function $IncludedByStateFilter (line 52552) | function $IncludedByStateFilter($state) {
  function expand (line 52578) | function expand() {
  function expandDone (line 52589) | function expandDone() {
  function collapse (line 52594) | function collapse() {
  function collapseDone (line 52616) | function collapseDone() {
  function getTrueValue (line 52881) | function getTrueValue() {
  function getFalseValue (line 52885) | function getFalseValue() {
  function getCheckboxValue (line 52889) | function getCheckboxValue(attributeValue, defaultValue) {
  function goNext (line 52959) | function goNext(slide, index, direction) {
  function getSlideByIndex (line 52998) | function getSlideByIndex(index) {
  function restartTimer (line 53051) | function restartTimer() {
  function resetTimer (line 53059) | function resetTimer() {
  function timerFn (line 53066) | function timerFn() {
  function removeClass (line 53274) | function removeClass(element, className, callback) {
  function createParser (line 53447) | function createParser(format) {
  function isValid (line 53529) | function isValid(year, month, date) {
  function getStyle (line 53555) | function getStyle(el, cssprop) {
  function isStaticPositioned (line 53569) | function isStaticPositioned(element) {
  function getDaysInMonth (line 53957) | function getDaysInMonth(year, month) {
  function getDates (line 53961) | function getDates(startDate, n) {
  function getISO8601WeekNumber (line 54019) | function getISO8601WeekNumber(date) {
  function getStartingYear (line 54126) | function getStartingYear( year ) {
  function cameltoDash (line 54271) | function cameltoDash(string) {
  function parseDate (line 54333) | function parseDate(viewValue) {
  function validator (line 54355) | function validator(modelValue, viewValue) {
  function linkFn (line 54998) | function linkFn(scope, element, attrs) {
  function backdropIndex (line 55176) | function backdropIndex() {
  function removeModalWindow (line 55193) | function removeModalWindow(modalInstance, elementToReceiveFocus) {
  function checkRemoveBackdrop (line 55215) | function checkRemoveBackdrop() {
  function removeAfterAnimate (line 55227) | function removeAfterAnimate(domEl, scope, done) {
  function broadcastClosing (line 55358) | function broadcastClosing(modalWindow, resultOrReason, closing) {
  function getTemplatePromise (line 55461) | function getTemplatePromise(options) {
  function getResolvePromises (line 55466) | function getResolvePromises(resolves) {
  function makePage (line 55719) | function makePage(number, text, isActive) {
  function getPages (line 55727) | function getPages(currentPage, totalPages) {
  function snake_case (line 55880) | function snake_case(name) {
  function getTriggers (line 55910) | function getTriggers(trigger) {
  function toggleTooltipBind (line 55989) | function toggleTooltipBind() {
  function showTooltipBind (line 55998) | function showTooltipBind() {
  function hideTooltipBind (line 56016) | function hideTooltipBind () {
  function show (line 56024) | function show() {
  function hide (line 56057) | function hide() {
  function createTooltip (line 56083) | function createTooltip() {
  function removeTooltip (line 56119) | function removeTooltip() {
  function prepareTooltip (line 56131) | function prepareTooltip() {
  function prepPopupClass (line 56187) | function prepPopupClass() {
  function prepPlacement (line 56191) | function prepPlacement() {
  function prepPopupDelay (line 56196) | function prepPopupDelay() {
  function prepTriggers (line 56211) | function prepTriggers() {
  function isTabHeading (line 57004) | function isTabHeading(node) {
  function getHoursFromTemplate (line 57137) | function getHoursFromTemplate() {
  function getMinutesFromTemplate (line 57155) | function getMinutesFromTemplate() {
  function pad (line 57160) | function pad(value) {
  function refresh (line 57305) | function refresh(keyboardChange) {
  function makeValid (line 57311) | function makeValid() {
  function updateTemplate (line 57317) | function updateTemplate(keyboardChange) {
  function addMinutes (line 57331) | function addMinutes(date, minutes) {
  function addMinutesToSelected (line 57338) | function addMinutesToSelected(minutes) {
  function findEndEventName (line 57476) | function findEndEventName(endEventNames) {
  function fireRecalculating (line 57715) | function fireRecalculating() {
  function recalculatePosition (line 57740) | function recalculatePosition() {
  function escapeRegexp (line 57993) | function escapeRegexp(queryToEscape) {
  function containsHtml (line 57999) | function containsHtml(matchItem) {
  function _super (line 58527) | function _super() {
  function _superApply (line 58531) | function _superApply( args ) {
  function processClassString (line 58911) | function processClassString( classes, checkOption ) {
  function handlerProxy (line 58994) | function handlerProxy() {
  function handlerProxy (line 59038) | function handlerProxy() {
  function getOffsets (line 59174) | function getOffsets( offsets, width, height ) {
  function parseCss (line 59181) | function parseCss( element, property ) {
  function getDimensions (line 59185) | function getDimensions( elem ) {
  function clamp (line 59881) | function clamp( value, prop, allowEmpty ) {
  function stringParse (line 59908) | function stringParse( string ) {
  function hue2rgb (line 60162) | function hue2rgb( p, q, h ) {
  function getElementStyles (line 60436) | function getElementStyles( elem ) {
  function styleDifference (line 60464) | function styleDifference( oldStyle, newStyle ) {
  function _normalizeArguments (line 60957) | function _normalizeArguments( effect, options, speed, callback ) {
  function standardAnimationOption (line 61009) | function standardAnimationOption( option ) {
  function run (line 61086) | function run( next ) {
  function parseClip (line 61234) | function parseClip( str, element ) {
  function childComplete (line 61618) | function childComplete() {
  function animComplete (line 61668) | function animComplete() {
  function visible (line 62328) | function visible( element ) {
  function reduce (line 62456) | function reduce( elem, size, border, margin ) {
  function datepicker_getZindex (line 65588) | function datepicker_getZindex( elem ) {
  function Datepicker (line 65617) | function Datepicker() {
  function datepicker_bindHover (line 67583) | function datepicker_bindHover( dpDiv ) {
  function datepicker_handleMouseover (line 67597) | function datepicker_handleMouseover() {
  function datepicker_extendRemove (line 67611) | function datepicker_extendRemove( target, props ) {
  function checkFocus (line 70646) | function checkFocus() {
  function filteredUi (line 70853) | function filteredUi( ui ) {
  function filteredUi (line 70901) | function filteredUi( ui ) {
  function isOverAxis (line 71498) | function isOverAxis( x, reference, size ) {
  function addItems (line 74322) | function addItems() {
  function delayEvent (line 75056) | function delayEvent( type, instance, container ) {
  function spinnerModifer (line 75156) | function spinnerModifer( fn ) {
  function checkFocus (line 75287) | function checkFocus() {
  function constrain (line 75938) | function constrain() {
  function complete (line 76325) | function complete() {
  function show (line 76330) | function show() {
  function position (line 76882) | function position( event ) {
  function transitionEnd (line 77139) | function transitionEnd() {
  function removeElement (line 77231) | function removeElement() {
  function Plugin (line 77247) | function Plugin(option) {
  function Plugin (line 77356) | function Plugin(option) {
  function Plugin (line 77580) | function Plugin(option) {
  function getTargetFromTrigger (line 77800) | function getTargetFromTrigger($trigger) {
  function Plugin (line 77812) | function Plugin(option) {
  function getParent (line 77879) | function getParent($this) {
  function clearMenus (line 77892) | function clearMenus(e) {
  function Plugin (line 77985) | function Plugin(option) {
  function Plugin (line 78313) | function Plugin(option, _relatedTarget) {
  function complete (line 78679) | function complete() {
  function Plugin (line 78855) | function Plugin(option) {
  function Plugin (line 78964) | function Plugin(option) {
  function ScrollSpy (line 79007) | function ScrollSpy(element, options) {
  function Plugin (line 79127) | function Plugin(option) {
  function next (line 79236) | function next() {
  function Plugin (line 79282) | function Plugin(option) {
  function Plugin (line 79439) | function Plugin(option) {
  function t (line 79484) | function t(n,t){return-1!==n.indexOf(t,n.length-t.length)}
    method constructor (line 227855) | constructor(e,t){if(e.length!==e[0].length)throw new Error('Confusion ...
    method fromLabels (line 227855) | static fromLabels(e,n,o={}){if(n.length!==e.length)throw new Error('pr...
    method getMatrix (line 227855) | getMatrix(){return this.matrix}
    method getLabels (line 227855) | getLabels(){return this.labels}
    method getTotalCount (line 227855) | getTotalCount(){for(var e=0,t=0;t<this.matrix.length;t++)for(var i=0;i...
    method getTrueCount (line 227855) | getTrueCount(){for(var e=0,t=0;t<this.matrix.length;t++)e+=this.matrix...
    method getFalseCount (line 227855) | getFalseCount(){return this.getTotalCount()-this.getTrueCount()}
    method getTruePositiveCount (line 227855) | getTruePositiveCount(e){var t=this.getIndex(e);return this.matrix[t][t]}
    method getTrueNegativeCount (line 227855) | getTrueNegativeCount(e){for(var t=this.getIndex(e),n=0,o=0;o<this.matr...
    method getFalsePositiveCount (line 227855) | getFalsePositiveCount(e){for(var t=this.getIndex(e),n=0,o=0;o<this.mat...
    method getFalseNegativeCount (line 227855) | getFalseNegativeCount(e){for(var t=this.getIndex(e),n=0,o=0;o<this.mat...
    method getPositiveCount (line 227855) | getPositiveCount(e){return this.getTruePositiveCount(e)+this.getFalseN...
    method getNegativeCount (line 227855) | getNegativeCount(e){return this.getTrueNegativeCount(e)+this.getFalseP...
    method getIndex (line 227855) | getIndex(e){var t=this.labels.indexOf(e);if(-1===t)throw new Error('Th...
    method getTruePositiveRate (line 227855) | getTruePositiveRate(e){return this.getTruePositiveCount(e)/this.getPos...
    method getTrueNegativeRate (line 227855) | getTrueNegativeRate(e){return this.getTrueNegativeCount(e)/this.getNeg...
    method getPositivePredictiveValue (line 227855) | getPositivePredictiveValue(e){var t=this.getTruePositiveCount(e);retur...
    method getNegativePredictiveValue (line 227855) | getNegativePredictiveValue(e){var t=this.getTrueNegativeCount(e);retur...
    method getFalseNegativeRate (line 227855) | getFalseNegativeRate(e){return 1-this.getTruePositiveRate(e)}
    method getFalsePositiveRate (line 227855) | getFalsePositiveRate(e){return 1-this.getTrueNegativeRate(e)}
    method getFalseDiscoveryRate (line 227855) | getFalseDiscoveryRate(e){var t=this.getFalsePositiveCount(e);return t/...
    method getFalseOmissionRate (line 227855) | getFalseOmissionRate(e){var t=this.getFalseNegativeCount(e);return t/(...
    method getF1Score (line 227855) | getF1Score(e){var t=this.getTruePositiveCount(e);return 2*t/(2*t+this....
    method getMatthewsCorrelationCoefficient (line 227855) | getMatthewsCorrelationCoefficient(e){var t=this.getTruePositiveCount(e...
    method getInformedness (line 227855) | getInformedness(e){return this.getTruePositiveRate(e)+this.getTrueNega...
    method getMarkedness (line 227855) | getMarkedness(e){return this.getPositivePredictiveValue(e)+this.getNeg...
    method getConfusionTable (line 227855) | getConfusionTable(e){return[[this.getTruePositiveCount(e),this.getFals...
    method getAccuracy (line 227855) | getAccuracy(){for(var e=0,t=0,n=0;n<this.matrix.length;n++)for(var i=0...
    method getCount (line 227855) | getCount(e,t){var i=this.getIndex(e),n=this.getIndex(t);return this.ma...
    method accuracy (line 227855) | get accuracy(){return this.getAccuracy()}
    method total (line 227855) | get total(){return this.getTotalCount()}
  function e (line 79484) | function e(){}
  function u (line 79484) | function u(n,f){function c(n,t){return b.push(n),H.push(t),R!=o&&(R=o,se...
    method constructor (line 227440) | constructor(e,t,i){super(),!0===e?(this.degree=t.degree,this.powers=t....
    method _predict (line 227440) | _predict(e){for(var t=0,i=0;i<this.powers.length;i++)t+=this.coefficie...
    method toJSON (line 227440) | toJSON(){return{name:'polynomialRegression',degree:this.degree,powers:...
    method toString (line 227440) | toString(e){return this._toFormula(e,!1)}
    method toLaTeX (line 227440) | toLaTeX(e){return this._toFormula(e,!0)}
    method _toFormula (line 227440) | _toFormula(e,t){var i='^',n='',o=' * ';t&&(i='^{',n='}',o='');for(var ...
    method load (line 227440) | static load(e){if('polynomialRegression'!==e.name)throw new TypeError(...
    method constructor (line 228104) | constructor(e,t,i){if(super(),!0===e)this.alpha=t.alpha,this.inputs=t....
    method _predict (line 228104) | _predict(e){return this.kernel.compute([e],this.inputs).mmul(this.alph...
    method toJSON (line 228104) | toJSON(){return{name:'kernelRidgeRegression',alpha:this.alpha,inputs:t...
    method load (line 228104) | static load(e){if('kernelRidgeRegression'!==e.name)throw new TypeError...
    method constructor (line 228137) | constructor(e,t){if(!0===e){var o=t;return this.center=o.center,this.s...
    method load (line 228137) | static load(e){if('PCA'!==e.name)throw new RangeError('Invalid model: ...
    method predict (line 228137) | predict(e){return e=new n(e),this.center&&(e.subRowVector(this.means),...
    method getExplainedVariance (line 228137) | getExplainedVariance(){for(var e=0,t=0;t<this.S.length;t++)e+=this.S[t...
    method getCumulativeVariance (line 228137) | getCumulativeVariance(){for(var e=this.getExplainedVariance(),t=1;t<e....
    method getEigenvectors (line 228137) | getEigenvectors(){return this.U}
    method getEigenvalues (line 228137) | getEigenvalues(){return this.S}
    method getStandardDeviations (line 228137) | getStandardDeviations(){return this.S.map((e)=>R(e))}
    method getLoadings (line 228137) | getLoadings(){return this.U.transpose()}
    method toJSON (line 228137) | toJSON(){return{name:'PCA',center:this.center,scale:this.scale,means:t...
    method _adjust (line 228137) | _adjust(e,t){if(this.center=!!t.center,this.scale=!!t.scale,e=new n(e)...
    method _computeFromCovarianceMatrix (line 228137) | _computeFromCovarianceMatrix(e){var t=new o(e,{assumeSymmetric:!0});th...
  function utils_hooks__hooks (line 79499) | function utils_hooks__hooks () {
  function setHookCallback (line 79505) | function setHookCallback (callback) {
  function isArray (line 79509) | function isArray(input) {
  function isDate (line 79513) | function isDate(input) {
  function map (line 79517) | function map(arr, fn) {
  function hasOwnProp (line 79525) | function hasOwnProp(a, b) {
  function extend (line 79529) | function extend(a, b) {
  function create_utc__createUTC (line 79547) | function create_utc__createUTC (input, format, locale, strict) {
  function defaultParsingFlags (line 79551) | function defaultParsingFlags() {
  function getParsingFlags (line 79567) | function getParsingFlags(m) {
  function valid__isValid (line 79574) | function valid__isValid(m) {
  function valid__createInvalid (line 79596) | function valid__createInvalid (flags) {
  function copyConfig (line 79610) | function copyConfig(to, from) {
  function Moment (line 79660) | function Moment(config) {
  function isMoment (line 79672) | function isMoment (obj) {
  function absFloor (line 79676) | function absFloor (number) {
  function toInt (line 79684) | function toInt(argumentForCoercion) {
  function compareArrays (line 79695) | function compareArrays(array1, array2, dontConvert) {
  function Locale (line 79709) | function Locale() {
  function normalizeLocale (line 79715) | function normalizeLocale(key) {
  function chooseLocale (line 79722) | function chooseLocale(names) {
  function loadLocale (line 79746) | function loadLocale(name) {
  function locale_locales__getSetGlobalLocale (line 79765) | function locale_locales__getSetGlobalLocale (key, values) {
  function defineLocale (line 79784) | function defineLocale (name, values) {
  function locale_locales__getLocale (line 79802) | function locale_locales__getLocale (key) {
  function addUnitAlias (line 79827) | function addUnitAlias (unit, shorthand) {
  function normalizeUnits (line 79832) | function normalizeUnits(units) {
  function normalizeObjectUnits (line 79836) | function normalizeObjectUnits(inputObject) {
  function makeGetSet (line 79853) | function makeGetSet (unit, keepTime) {
  function get_set__get (line 79865) | function get_set__get (mom, unit) {
  function get_set__set (line 79869) | function get_set__set (mom, unit, value) {
  function getSet (line 79875) | function getSet (units, value) {
  function zeroFill (line 79890) | function zeroFill(number, targetLength, forceSign) {
  function addFormatToken (line 79910) | function addFormatToken (token, padded, ordinal, callback) {
  function removeFormattingTokens (line 79932) | function removeFormattingTokens(input) {
  function makeFormatFunction (line 79939) | function makeFormatFunction(format) {
  function formatMoment (line 79960) | function formatMoment(m, format) {
  function expandFormat (line 79971) | function expandFormat(format, locale) {
  function isFunction (line 80010) | function isFunction (sth) {
  function addRegexToken (line 80017) | function addRegexToken (token, regex, strictRegex) {
  function getParseRegexForToken (line 80023) | function getParseRegexForToken (token, config) {
  function unescapeFormat (line 80032) | function unescapeFormat(s) {
  function addParseToken (line 80040) | function addParseToken (token, callback) {
  function addWeekParseToken (line 80055) | function addWeekParseToken (token, callback) {
  function addTimeToArrayFromToken (line 80062) | function addTimeToArrayFromToken(token, input, config) {
  function daysInMonth (line 80076) | function daysInMonth(year, month) {
  function localeMonths (line 80122) | function localeMonths (m) {
  function localeMonthsShort (line 80127) | function localeMonthsShort (m) {
  function localeMonthsParse (line 80131) | function localeMonthsParse (monthName, format, strict) {
  function setMonth (line 80164) | function setMonth (mom, value) {
  function getSetMonth (line 80181) | function getSetMonth (value) {
  function getDaysInMonth (line 80191) | function getDaysInMonth () {
  function checkOverflow (line 80195) | function checkOverflow (m) {
  function warn (line 80219) | function warn(msg) {
  function deprecate (line 80225) | function deprecate(msg, fn) {
  function deprecateSimple (line 80239) | function deprecateSimple(name, msg) {
  function configFromISO (line 80269) | function configFromISO(config) {
  function configFromString (line 80299) | function configFromString(config) {
  function createDate (line 80324) | function createDate (y, m, d, h, M, s, ms) {
  function createUTCDate (line 80336) | function createUTCDate (y) {
  function daysInYear (line 80374) | function daysInYear(year) {
  function isLeapYear (line 80378) | function isLeapYear(year) {
  function getIsLeapYear (line 80392) | function getIsLeapYear () {
  function weekOfYear (line 80424) | function weekOfYear(mom, firstDayOfWeek, firstDayOfWeekOfYear) {
  function localeWeek (line 80447) | function localeWeek (mom) {
  function localeFirstDayOfWeek (line 80456) | function localeFirstDayOfWeek () {
  function localeFirstDayOfYear (line 80460) | function localeFirstDayOfYear () {
  function getSetWeek (line 80466) | function getSetWeek (input) {
  function getSetISOWeek (line 80471) | function getSetISOWeek (input) {
  function dayOfYearFromWeeks (line 80493) | function dayOfYearFromWeeks(year, week, weekday, firstDayOfWeekOfYear, f...
  function getSetDayOfYear (line 80511) | function getSetDayOfYear (input) {
  function defaults (line 80517) | function defaults(a, b, c) {
  function currentDateArray (line 80527) | function currentDateArray(config) {
  function configFromArray (line 80539) | function configFromArray (config) {
  function dayOfYearFromWeekInfo (line 80601) | function dayOfYearFromWeekInfo(config) {
  function configFromStringAndFormat (line 80646) | function configFromStringAndFormat(config) {
  function meridiemFixWrap (line 80710) | function meridiemFixWrap (locale, hour, meridiem) {
  function configFromStringAndArray (line 80735) | function configFromStringAndArray(config) {
  function configFromObject (line 80779) | function configFromObject(config) {
  function createFromConfig (line 80790) | function createFromConfig (config) {
  function prepareConfig (line 80801) | function prepareConfig (config) {
  function configFromInput (line 80830) | function configFromInput(config) {
  function createLocalOrUTC (line 80853) | function createLocalOrUTC (input, format, locale, strict, isUTC) {
  function local__createLocal (line 80872) | function local__createLocal (input, format, locale, strict) {
  function pickBy (line 80897) | function pickBy(fn, moments) {
  function min (line 80915) | function min () {
  function max (line 80921) | function max () {
  function Duration (line 80927) | function Duration (duration) {
  function isDuration (line 80962) | function isDuration (obj) {
  function offset (line 80966) | function offset (token, separator) {
  function offsetFromString (line 80997) | function offsetFromString(string) {
  function cloneWithOffset (line 81007) | function cloneWithOffset(input, model) {
  function getDateOffset (line 81021) | function getDateOffset (m) {
  function getSetOffset (line 81045) | function getSetOffset (input, keepLocalTime) {
  function getSetZone (line 81078) | function getSetZone (input, keepLocalTime) {
  function setOffsetToUTC (line 81092) | function setOffsetToUTC (keepLocalTime) {
  function setOffsetToLocal (line 81096) | function setOffsetToLocal (keepLocalTime) {
  function setOffsetToParsedOffset (line 81108) | function setOffsetToParsedOffset () {
  function hasAlignedHourOffset (line 81117) | function hasAlignedHourOffset (input) {
  function isDaylightSavingTime (line 81123) | function isDaylightSavingTime () {
  function isDaylightSavingTimeShifted (line 81130) | function isDaylightSavingTimeShifted () {
  function isLocal (line 81151) | function isLocal () {
  function isUtcOffset (line 81155) | function isUtcOffset () {
  function isUtc (line 81159) | function isUtc () {
  function create__createDuration (line 81169) | function create__createDuration (input, key) {
  function parseIso (line 81232) | function parseIso (inp, sign) {
  function positiveMomentsDifference (line 81241) | function positiveMomentsDifference(base, other) {
  function momentsDifference (line 81255) | function momentsDifference(base, other) {
  function createAdder (line 81269) | function createAdder(direction, name) {
  function add_subtract__addSubtract (line 81285) | function add_subtract__addSubtract (mom, duration, isAdding, updateOffse...
  function moment_calendar__calendar (line 81308) | function moment_calendar__calendar (time, formats) {
  function clone (line 81323) | function clone () {
  function isAfter (line 81327) | function isAfter (input, units) {
  function isBefore (line 81339) | function isBefore (input, units) {
  function isBetween (line 81351) | function isBetween (from, to, units) {
  function isSame (line 81355) | function isSame (input, units) {
  function diff (line 81367) | function diff (input, units, asFloat) {
  function monthDiff (line 81393) | function monthDiff (a, b) {
  function toString (line 81415) | function toString () {
  function moment_format__toISOString (line 81419) | function moment_format__toISOString () {
  function format (line 81433) | function format (inputString) {
  function from (line 81438) | function from (time, withoutSuffix) {
  function fromNow (line 81445) | function fromNow (withoutSuffix) {
  function to (line 81449) | function to (time, withoutSuffix) {
  function toNow (line 81456) | function toNow (withoutSuffix) {
  function locale (line 81460) | function locale (key) {
  function localeData (line 81485) | function localeData () {
  function startOf (line 81489) | function startOf (units) {
  function endOf (line 81532) | function endOf (units) {
  function to_type__valueOf (line 81540) | function to_type__valueOf () {
  function unix (line 81544) | function unix () {
  function toDate (line 81548) | function toDate () {
  function toArray (line 81552) | function toArray () {
  function toObject (line 81557) | function toObject () {
  function moment_valid__isValid (line 81570) | function moment_valid__isValid () {
  function parsingFlags (line 81574) | function parsingFlags () {
  function invalidAt (line 81578) | function invalidAt () {
  function addWeekYearFormatToken (line 81590) | function addWeekYearFormatToken (token, getter) {
  function weeksInYear (line 81625) | function weeksInYear(year, dow, doy) {
  function getSetWeekYear (line 81631) | function getSetWeekYear (input) {
  function getSetISOWeekYear (line 81636) | function getSetISOWeekYear (input) {
  function getISOWeeksInYear (line 81641) | function getISOWeeksInYear () {
  function getWeeksInYear (line 81645) | function getWeeksInYear () {
  function getSetQuarter (line 81665) | function getSetQuarter (input) {
  function parseWeekday (line 81740) | function parseWeekday(input, locale) {
  function localeWeekdays (line 81760) | function localeWeekdays (m) {
  function localeWeekdaysShort (line 81765) | function localeWeekdaysShort (m) {
  function localeWeekdaysMin (line 81770) | function localeWeekdaysMin (m) {
  function localeWeekdaysParse (line 81774) | function localeWeekdaysParse (weekdayName) {
  function getSetDayOfWeek (line 81795) | function getSetDayOfWeek (input) {
  function getSetLocaleDayOfWeek (line 81805) | function getSetLocaleDayOfWeek (input) {
  function getSetISODayOfWeek (line 81810) | function getSetISODayOfWeek (input) {
  function meridiem (line 81822) | function meridiem (token, lowercase) {
  function matchMeridiem (line 81837) | function matchMeridiem (isStrict, locale) {
  function localeIsPM (line 81860) | function localeIsPM (input) {
  function localeMeridiem (line 81867) | function localeMeridiem (hours, minutes, isLower) {
  function parseMs (line 81960) | function parseMs(input, array) {
  function getZoneAbbr (line 81976) | function getZoneAbbr () {
  function getZoneName (line 81980) | function getZoneName () {
  function moment__createUnix (line 82086) | function moment__createUnix (input) {
  function moment__createInZone (line 82090) | function moment__createInZone () {
  function locale_calendar__calendar (line 82103) | function locale_calendar__calendar (key, mom, now) {
  function longDateFormat (line 82117) | function longDateFormat (key) {
  function invalidDate (line 82134) | function invalidDate () {
  function ordinal (line 82141) | function ordinal (number) {
  function preParsePostFormat (line 82145) | function preParsePostFormat (string) {
  function relative__relativeTime (line 82165) | function relative__relativeTime (number, withoutSuffix, string, isFuture) {
  function pastFuture (line 82172) | function pastFuture (diff, output) {
  function locale_set__set (line 82177) | function locale_set__set (config) {
  function lists__get (line 82237) | function lists__get (format, index, field, setter) {
  function list (line 82243) | function list (format, index, field, count, setter) {
  function lists__listMonths (line 82263) | function lists__listMonths (format, index) {
  function lists__listMonthsShort (line 82267) | function lists__listMonthsShort (format, index) {
  function lists__listWeekdays (line 82271) | function lists__listWeekdays (format, index) {
  function lists__listWeekdaysShort (line 82275) | function lists__listWeekdaysShort (format, index) {
  function lists__listWeekdaysMin (line 82279) | function lists__listWeekdaysMin (format, index) {
  function duration_abs__abs (line 82301) | function duration_abs__abs () {
  function duration_add_subtract__addSubtract (line 82318) | function duration_add_subtract__addSubtract (duration, input, value, dir...
  function duration_add_subtract__add (line 82329) | function duration_add_subtract__add (input, value) {
  function duration_add_subtract__subtract (line 82334) | function duration_add_subtract__subtract (input, value) {
  function absCeil (line 82338) | function absCeil (number) {
  function bubble (line 82346) | function bubble () {
  function daysToMonths (line 82393) | function daysToMonths (days) {
  function monthsToDays (line 82399) | function monthsToDays (months) {
  function as (line 82404) | function as (units) {
  function duration_as__valueOf (line 82432) | function duration_as__valueOf () {
  function makeAs (line 82441) | function makeAs (alias) {
  function duration_get__get (line 82456) | function duration_get__get (units) {
  function makeGetter (line 82461) | function makeGetter(name) {
  function weeks (line 82475) | function weeks () {
  function substituteTimeAgo (line 82489) | function substituteTimeAgo(string, number, withoutSuffix, isFuture, loca...
  function duration_humanize__relativeTime (line 82493) | function duration_humanize__relativeTime (posNegDuration, withoutSuffix,...
  function duration_humanize__getSetRelativeTimeThreshold (line 82520) | function duration_humanize__getSetRelativeTimeThreshold (threshold, limi...
  function humanize (line 82531) | function humanize (withSuffix) {
  function iso_string__toISOString (line 82544) | function iso_string__toISOString() {
  function ascendingComparator (line 82719) | function ascendingComparator(f) {
  function tickStep (line 82842) | function tickStep(start, stop, count) {
  function histogram (line 82861) | function histogram(data) {
  function length (line 83106) | function length(d) {
  function Map (line 83116) | function Map() {}
  function map$1 (line 83166) | function map$1(object, f) {
  function apply (line 83195) | function apply(array, depth, createResult, setResult) {
  function entries (line 83225) | function entries(map, depth) {
  function createObject (line 83244) | function createObject() {
  function setObject (line 83248) | function setObject(object, key, value) {
  function createMap (line 83252) | function createMap() {
  function setMap (line 83256) | function setMap(map, key, value) {
  function Set (line 83260) | function Set() {}
  function set (line 83280) | function set(object, f) {
  function linear (line 83372) | function linear(t) {
  function quadIn (line 83376) | function quadIn(t) {
  function quadOut (line 83380) | function quadOut(t) {
  function quadInOut (line 83384) | function quadInOut(t) {
  function cubicIn (line 83388) | function cubicIn(t) {
  function cubicOut (line 83392) | function cubicOut(t) {
  function cubicInOut (line 83396) | function cubicInOut(t) {
  function polyIn (line 83405) | function polyIn(t) {
  function polyOut (line 83417) | function polyOut(t) {
  function polyInOut (line 83429) | function polyInOut(t) {
  function sinIn (line 83441) | function sinIn(t) {
  function sinOut (line 83445) | function sinOut(t) {
  function sinInOut (line 83449) | function sinInOut(t) {
  function expIn (line 83453) | function expIn(t) {
  function expOut (line 83457) | function expOut(t) {
  function expInOut (line 83461) | function expInOut(t) {
  function circleIn (line 83465) | function circleIn(t) {
  function circleOut (line 83469) | function circleOut(t) {
  function circleInOut (line 83473) | function circleInOut(t) {
  function bounceIn (line 83488) | function bounceIn(t) {
  function bounceOut (line 83492) | function bounceOut(t) {
  function bounceInOut (line 83496) | function bounceInOut(t) {
  function backIn (line 83505) | function backIn(t) {
  function backOut (line 83517) | function backOut(t) {
  function backInOut (line 83529) | function backInOut(t) {
  function elasticIn (line 83545) | function elasticIn(t) {
  function elasticOut (line 83558) | function elasticOut(t) {
  function elasticInOut (line 83571) | function elasticInOut(t) {
  function lexicographicOrder (line 83628) | function lexicographicOrder(a, b) {
  function computeUpperHullIndexes (line 83635) | function computeUpperHullIndexes(points) {
  function Path (line 83722) | function Path() {
  function path (line 83728) | function path() {
  function add (line 83867) | function add(tree, x, y, d) {
  function addAll (line 83910) | function addAll(data) {
  function removeAll (line 84155) | function removeAll(data) {
  function defaultX (line 84207) | function defaultX(d) {
  function defaultY (line 84215) | function defaultY(d) {
  function quadtree (line 84223) | function quadtree(nodes, x, y) {
  function Quadtree (line 84228) | function Quadtree(x, y, x0, y0, x1, y1) {
  function leaf_copy (line 84238) | function leaf_copy(leaf) {
  function Queue (line 84288) | function Queue(size) {
  function poke (line 84330) | function poke(q) {
  function start (line 84340) | function start(q) {
  function end (line 84354) | function end(q, i) {
  function abort (line 84370) | function abort(q, e) {
  function maybeNotify (line 84390) | function maybeNotify(q) {
  function queue (line 84398) | function queue(concurrency) {
  function arcInnerRadius (line 84413) | function arcInnerRadius(d) {
  function arcOuterRadius (line 84417) | function arcOuterRadius(d) {
  function arcStartAngle (line 84421) | function arcStartAngle(d) {
  function arcEndAngle (line 84425) | function arcEndAngle(d) {
  function arcPadAngle (line 84429) | function arcPadAngle(d) {
  function asin (line 84433) | function asin(x) {
  function intersect (line 84437) | function intersect(x0, y0, x1, y1, x2, y2, x3, y3) {
  function cornerTangents (line 84446) | function cornerTangents(x0, y0, x1, y1, r1, rc, cw) {
  function arc (line 84497) | function arc() {
  function Linear (line 84673) | function Linear(context) {
  function x (line 84705) | function x(p) {
  function y (line 84709) | function y(p) {
  function line (line 84721) | function line(data) {
  function area (line 84774) | function area(data) {
  function arealine (line 84812) | function arealine() {
  function pie (line 84884) | function pie(data) {
  function Radial (line 84953) | function Radial(curve) {
  function curveRadial (line 84975) | function curveRadial(curve) {
  function radialLine (line 84986) | function radialLine(l) {
  function symbol (line 85156) | function symbol() {
  function point (line 85180) | function point(that, x, y) {
  function Basis (line 85191) | function Basis(context) {
  function BasisClosed (line 85232) | function BasisClosed(context) {
  function BasisOpen (line 85282) | function BasisOpen(context) {
  function Bundle (line 85320) | function Bundle(context, beta) {
  function bundle (line 85364) | function bundle(context) {
  function point$1 (line 85375) | function point$1(that, x, y) {
  function Cardinal (line 85386) | function Cardinal(context, tension) {
  function cardinal (line 85426) | function cardinal(context) {
  function CardinalClosed (line 85437) | function CardinalClosed(context, tension) {
  function cardinal (line 85485) | function cardinal(context) {
  function CardinalOpen (line 85496) | function CardinalOpen(context, tension) {
  function cardinal (line 85533) | function cardinal(context) {
  function point$2 (line 85544) | function point$2(that, x, y) {
  function CatmullRom (line 85567) | function CatmullRom(context, alpha) {
  function catmullRom (line 85619) | function catmullRom(context) {
  function CatmullRomClosed (line 85630) | function CatmullRomClosed(context, alpha) {
  function catmullRom (line 85690) | function catmullRom(context) {
  function CatmullRomOpen (line 85701) | function CatmullRomOpen(context, alpha) {
  function catmullRom (line 85750) | function catmullRom(context) {
  function LinearClosed (line 85761) | function LinearClosed(context) {
  function sign (line 85785) | function sign(x) {
  function slope3 (line 85793) | function slope3(that, x2, y2) {
  function slope2 (line 85803) | function slope2(that, t) {
  function point$3 (line 85811) | function point$3(that, t0, t1) {
  function MonotoneX (line 85820) | function MonotoneX(context) {
  function MonotoneY (line 85863) | function MonotoneY(context) {
  function ReflectContext (line 85871) | function ReflectContext(context) {
  function monotoneX (line 85882) | function monotoneX(context) {
  function monotoneY (line 85886) | function monotoneY(context) {
  function Natural (line 85890) | function Natural(context) {
  function controlPoints (line 85934) | function controlPoints(x) {
  function Step (line 85956) | function Step(context, t) {
  function stepBefore (line 86002) | function stepBefore(context) {
  function stepAfter (line 86006) | function stepAfter(context) {
  function stackValue (line 86028) | function stackValue(d, key) {
  function stack (line 86038) | function stack(data) {
  function sum$1 (line 86127) | function sum$1(series) {
  function extend (line 86171) | function extend(parent, definition) {
  function Color (line 86177) | function Color() {}
  function color (line 86351) | function color(format) {
  function rgbn (line 86367) | function rgbn(n) {
  function rgba (line 86371) | function rgba(r, g, b, a) {
  function rgbConvert (line 86376) | function rgbConvert(o) {
  function rgb (line 86383) | function rgb(r, g, b, opacity) {
  function Rgb (line 86387) | function Rgb(r, g, b, opacity) {
  function hsla (line 86422) | function hsla(h, s, l, a) {
  function hslConvert (line 86429) | function hslConvert(o) {
  function hsl (line 86455) | function hsl(h, s, l, opacity) {
  function Hsl (line 86459) | function Hsl(h, s, l, opacity) {
  function hsl2rgb (line 86496) | function hsl2rgb(h, m1, m2) {
  function labConvert (line 86515) | function labConvert(o) {
  function lab (line 86531) | function lab(l, a, b, opacity) {
  function Lab (line 86535) | function Lab(l, a, b, opacity) {
  function xyz2lab (line 86565) | function xyz2lab(t) {
  function lab2xyz (line 86569) | function lab2xyz(t) {
  function xyz2rgb (line 86573) | function xyz2rgb(x) {
  function rgb2xyz (line 86577) | function rgb2xyz(x) {
  function hclConvert (line 86581) | function hclConvert(o) {
  function hcl (line 86588) | function hcl(h, c, l, opacity) {
  function Hcl (line 86592) | function Hcl(h, c, l, opacity) {
  function cubehelixConvert (line 86620) | function cubehelixConvert(o) {
  function cubehelix (line 86634) | function cubehelix(h, s, l, opacity) {
  function Cubehelix (line 86638) | function Cubehelix(h, s, l, opacity) {
  function basis$1 (line 86669) | function basis$1(t1, v0, v1, v2, v3) {
  function linear$1 (line 86707) | function linear$1(a, d) {
  function exponential$1 (line 86713) | function exponential$1(a, b, y) {
  function hue (line 86719) | function hue(a, b) {
  function gamma (line 86724) | function gamma(y) {
  function nogamma (line 86730) | function nogamma(a, b) {
  function rgb$$1 (line 86738) | function rgb$$1(start, end) {
  function rgbSpline (line 86757) | function rgbSpline(spline) {
  function zero (line 86840) | function zero(b) {
  function one (line 86846) | function one(b) {
  function parseCss (line 86950) | function parseCss(value) {
  function parseSvg (line 86960) | function parseSvg(value) {
  function interpolateTransform (line 86969) | function interpolateTransform(parse, pxComma, pxParen, degParen) {
  function cosh (line 87035) | function cosh(x) {
  function sinh (line 87039) | function sinh(x) {
  function tanh (line 87043) | function tanh(x) {
  function hsl$1 (line 87095) | function hsl$1(hue$$1) {
  function lab$1 (line 87114) | function lab$1(start, end) {
  function hcl$1 (line 87128) | function hcl$1(hue$$1) {
  function cubehelix$1 (line 87147) | function cubehelix$1(hue$$1) {
  function dispatch (line 87182) | function dispatch() {
  function Dispatch (line 87190) | function Dispatch(_) {
  function parseTypenames (line 87194) | function parseTypenames(typenames, types) {
  function get (line 87244) | function get(type, name) {
  function set$2 (line 87252) | function set$2(type, name, callback) {
  function objectConverter (line 87263) | function objectConverter(columns) {
  function customConverter (line 87269) | function customConverter(columns, f) {
  function inferColumns (line 87277) | function inferColumns(rows) {
  function parse (line 87296) | function parse(text, f) {
  function parseRows (line 87305) | function parseRows(text, f) {
  function format (line 87367) | function format(rows, columns) {
  function formatRows (line 87376) | function formatRows(rows) {
  function formatRow (line 87380) | function formatRow(row) {
  function formatValue (line 87384) | function formatValue(text) {
  function respond (line 87433) | function respond(o) {
  function fixCallback (line 87548) | function fixCallback(callback) {
  function hasResponse (line 87554) | function hasResponse(xhr) {
  function responseOf (line 87600) | function responseOf(parse, row) {
  function now (line 87622) | function now() {
  function clearNow (line 87626) | function clearNow() {
  function Timer (line 87630) | function Timer() {
  function timer (line 87659) | function timer(callback, delay, time) {
  function timerFlush (line 87665) | function timerFlush() {
  function wake (line 87676) | function wake() {
  function poke$1 (line 87688) | function poke$1() {
  function nap (line 87693) | function nap() {
  function sleep (line 87708) | function sleep(time) {
  function newInterval (line 87746) | function newInterval(floori, offseti, count, field) {
  function weekday (line 87885) | function weekday(i) {
  function utcWeekday (line 87985) | function utcWeekday(i) {
  function FormatSpecifier (line 88151) | function FormatSpecifier(specifier) {
  function identity$3 (line 88199) | function identity$3(x) {
  function newFormat (line 88208) | function newFormat(specifier) {
  function formatPrefix (line 88317) | function formatPrefix(specifier, value) {
  function defaultLocale (line 88344) | function defaultLocale(definition) {
  function localDate (line 88364) | function localDate(d) {
  function utcDate (line 88373) | function utcDate(d) {
  function newYear (line 88382) | function newYear(y) {
  function formatLocale$1 (line 88386) | function formatLocale$1(locale) {
  function pad (line 88682) | function pad(value, fill, width) {
  function requote (line 88689) | function requote(s) {
  function formatRe (line 88693) | function formatRe(names) {
  function formatLookup (line 88697) | function formatLookup(names) {
  function parseWeekdayNumber (line 88703) | function parseWeekdayNumber(d, string, i) {
  function parseWeekNumberSunday (line 88708) | function parseWeekNumberSunday(d, string, i) {
  function parseWeekNumberMonday (line 88713) | function parseWeekNumberMonday(d, string, i) {
  function parseFullYear (line 88718) | function parseFullYear(d, string, i) {
  function parseYear (line 88723) | function parseYear(d, string, i) {
  function parseZone (line 88728) | function parseZone(d, string, i) {
  function parseMonthNumber (line 88733) | function parseMonthNumber(d, string, i) {
  function parseDayOfMonth (line 88738) | function parseDayOfMonth(d, string, i) {
  function parseDayOfYear (line 88743) | function parseDayOfYear(d, string, i) {
  function parseHour24 (line 88748) | function parseHour24(d, string, i) {
  function parseMinutes (line 88753) | function parseMinutes(d, string, i) {
  function parseSeconds (line 88758) | function parseSeconds(d, string, i) {
  function parseMilliseconds (line 88763) | function parseMilliseconds(d, string, i) {
  function parseLiteralPercent (line 88768) | function parseLiteralPercent(d, string, i) {
  function formatDayOfMonth (line 88773) | function formatDayOfMonth(d, p) {
  function formatHour24 (line 88777) | function formatHour24(d, p) {
  function formatHour12 (line 88781) | function formatHour12(d, p) {
  function formatDayOfYear (line 88785) | function formatDayOfYear(d, p) {
  function formatMilliseconds (line 88789) | function formatMilliseconds(d, p) {
  function formatMonthNumber (line 88793) | function formatMonthNumber(d, p) {
  function formatMinutes (line 88797) | function formatMinutes(d, p) {
  function formatSeconds (line 88801) | function formatSeconds(d, p) {
  function formatWeekNumberSunday (line 88805) | function formatWeekNumberSunday(d, p) {
  function formatWeekdayNumber (line 88809) | function formatWeekdayNumber(d) {
  function formatWeekNumberMonday (line 88813) | function formatWeekNumberMonday(d, p) {
  function formatYear (line 88817) | function formatYear(d, p) {
  function formatFullYear (line 88821) | function formatFullYear(d, p) {
  function formatZone (line 88825) | function formatZone(d) {
  function formatUTCDayOfMonth (line 88832) | function formatUTCDayOfMonth(d, p) {
  function formatUTCHour24 (line 88836) | function formatUTCHour24(d, p) {
  function formatUTCHour12 (line 88840) | function formatUTCHour12(d, p) {
  function formatUTCDayOfYear (line 88844) | function formatUTCDayOfYear(d, p) {
  function formatUTCMilliseconds (line 88848) | function formatUTCMilliseconds(d, p) {
  function formatUTCMonthNumber (line 88852) | function formatUTCMonthNumber(d, p) {
  function formatUTCMinutes (line 88856) | function formatUTCMinutes(d, p) {
  function formatUTCSeconds (line 88860) | function formatUTCSeconds(d, p) {
  function formatUTCWeekNumberSunday (line 88864) | function formatUTCWeekNumberSunday(d, p) {
  function formatUTCWeekdayNumber (line 88868) | function formatUTCWeekdayNumber(d) {
  function formatUTCWeekNumberMonday (line 88872) | function formatUTCWeekNumberMonday(d, p) {
  funct
Copy disabled (too large) Download .json
Condensed preview — 746 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (110,009K chars).
[
  {
    "path": ".dockerignore",
    "chars": 150,
    "preview": "client/node_modules/*\nnode/node_modules/*\nkong/node_modules/*\n.git\nclient/dist/*\nREADME.md\nINSTALL.md\nDOCKER.md\nCONTRIBU"
  },
  {
    "path": ".gitattributes",
    "chars": 293,
    "preview": "# Set the default behavior, in case people don't have core.autocrlf set\n\n* text=auto\n\n# Text files that must have LF on "
  },
  {
    "path": ".gitignore",
    "chars": 888,
    "preview": "# Bower + Gulp Node_modules\nserver/node_modules/\nclient/node_modules/\nclient/bower_components/\nclient/coverage/\nclient/."
  },
  {
    "path": ".vscode/launch.json",
    "chars": 424,
    "preview": "{\n    // Use IntelliSense to learn about possible Node.js debug attributes.\n    // Hover to view descriptions of existin"
  },
  {
    "path": "CONTRIBUTING.md",
    "chars": 6192,
    "preview": "# How to Contribute\n\nWe love Pull Requests! Your contributions help drive development.\n\n## Getting Started\n\nThanks for y"
  },
  {
    "path": "DOCKER.md",
    "chars": 18869,
    "preview": "# **Running and Developing Oncoscape with Docker** \n---\n\n1. [What is Docker?](#1-what-is-docker)\n2. [Installing Docker o"
  },
  {
    "path": "Dockerfile",
    "chars": 3079,
    "preview": "# Use Ubuntu 14.04 as the base container\nFROM ubuntu:16.04\n\n# Add Standard Packages + Verification Key\nRUN apt-key adv -"
  },
  {
    "path": "HugoGenes.json",
    "chars": 520617,
    "preview": "[\n  \"A1BG\",\n  \"A1BG-AS1\",\n  \"A1CF\",\n  \"A2M\",\n  \"A2M-AS1\",\n  \"A2ML1\",\n  \"A2ML1-AS1\",\n  \"A2ML1-AS2\",\n  \"A2MP1\",\n  \"A3GALT2"
  },
  {
    "path": "INSTALL.md",
    "chars": 7825,
    "preview": "The following instructions describe how to install and run Oncoscape with the necessary data, analysis, and R dependency"
  },
  {
    "path": "LICENSE",
    "chars": 1077,
    "preview": "The MIT License (MIT)\n\nCopyright (c) 2015 oncoscape\n\nPermission is hereby granted, free of charge, to any person obtaini"
  },
  {
    "path": "README.md",
    "chars": 3874,
    "preview": "[![Circle CI](https://circleci.com/gh/FredHutch/Oncoscape/tree/develop.svg?style=shield&circle-token=:circle-token)](htt"
  },
  {
    "path": "admin/.editorconfig",
    "chars": 260,
    "preview": "# @AngularClass\n# http://editorconfig.org\n\nroot = true\n\n[*]\ncharset = utf-8\nindent_style = space\nindent_size = 2\nend_of_"
  },
  {
    "path": "admin/.github/CONTRIBUTING.md",
    "chars": 530,
    "preview": "## Read and contribute to the Wiki\n\nMake sure you read the [Wiki](https://github.com/AngularClass/angular2-webpack-start"
  },
  {
    "path": "admin/.github/ISSUE_TEMPLATE.md",
    "chars": 1191,
    "preview": "**Note: for support questions, please use one of these channels:** [Chat: AngularClass.slack](http://angularclass.com/me"
  },
  {
    "path": "admin/.github/PULL_REQUEST_TEMPLATE.md",
    "chars": 261,
    "preview": "* **What kind of change does this PR introduce?** (Bug fix, feature, docs update, ...)\n\n\n\n* **What is the current behavi"
  },
  {
    "path": "admin/.gitignore",
    "chars": 781,
    "preview": "# @AngularClass\n\n# Logs\nlogs\n*.log\n\n# Runtime data\npids\n*.pid\n*.seed\n\n# Directory for instrumented libs generated by jsc"
  },
  {
    "path": "admin/.nvmrc",
    "chars": 6,
    "preview": "lts/*\n"
  },
  {
    "path": "admin/.travis.yml",
    "chars": 338,
    "preview": "language: node_js\nnode_js:\n  - \"4\"\n  - \"5\"\n  - \"node\"\nservices:\n  - docker\nbefore_install:\n  - export CHROME_BIN=chromiu"
  },
  {
    "path": "admin/.vscode/launch.json",
    "chars": 782,
    "preview": "{\n    \"version\": \"0.2.0\",\n    \"configurations\": [\n        {\n            \"name\": \"Launch Chrome against localhost, with s"
  },
  {
    "path": "admin/.vscode/settings.json",
    "chars": 56,
    "preview": "{\n  \"typescript.tsdk\": \"node_modules/typescript/lib/\"\n}\n"
  },
  {
    "path": "admin/3d/a2/chart3.html",
    "chars": 83225,
    "preview": "<html>        \n        <head>\n        <script src=\"https://cdn.plot.ly/plotly-latest.min.js\"></script>\n        <script s"
  },
  {
    "path": "admin/3d/a2/index.html",
    "chars": 9202,
    "preview": "<html>        \n        <head>\n        <script src=\"https://cdn.plot.ly/plotly-latest.min.js\"></script>\n        <script s"
  },
  {
    "path": "admin/3d/a2/xxxchart3.html",
    "chars": 83072,
    "preview": "<html>        \n        <head>\n        <script src=\"https://cdn.plot.ly/plotly-latest.min.js\"></script>\n        <script s"
  },
  {
    "path": "admin/Dockerfile",
    "chars": 85,
    "preview": "# Builds a Docker to deliver dist/\nFROM nginx:latest\nCOPY dist/ /usr/share/nginx/html"
  },
  {
    "path": "admin/config/github-deploy/index.js",
    "chars": 1366,
    "preview": "const helpers = require('../helpers');\nconst execSync = require('child_process').execSync;\n\nconst REPO_NAME_RE = /Push {"
  },
  {
    "path": "admin/config/head-config.common.js",
    "chars": 2444,
    "preview": "/**\n * Configuration for head elements added during the creation of index.html.\n *\n * All href attributes are added the "
  },
  {
    "path": "admin/config/helpers.js",
    "chars": 564,
    "preview": "/**\n * @author: @AngularClass\n */\nvar path = require('path');\n\n// Helper functions\nvar ROOT = path.resolve(__dirname, '."
  },
  {
    "path": "admin/config/html-elements-plugin/index.js",
    "chars": 3281,
    "preview": "\nfunction HtmlElementsPlugin(locations) {\n  this.locations = locations;\n}\n\nHtmlElementsPlugin.prototype.apply = function"
  },
  {
    "path": "admin/config/karma.conf.js",
    "chars": 2559,
    "preview": "/**\n * @author: @AngularClass\n */\n\nmodule.exports = function(config) {\n  var testWebpackConfig = require('./webpack.test"
  },
  {
    "path": "admin/config/modules/angular2-hmr-prod.js",
    "chars": 36,
    "preview": "exports.HmrState = function() {\n\n};\n"
  },
  {
    "path": "admin/config/protractor.conf.js",
    "chars": 936,
    "preview": "/**\n * @author: @AngularClass\n */\n\nrequire('ts-node/register');\nvar helpers = require('./helpers');\n\nexports.config = {\n"
  },
  {
    "path": "admin/config/spec-bundle.js",
    "chars": 2071,
    "preview": "/**\n * @author: @AngularClass\n */\n\n/*\n * When testing with webpack and ES6, we have to do some extra\n * things to get te"
  },
  {
    "path": "admin/config/webpack.common.js",
    "chars": 9210,
    "preview": "/**\n * @author: @AngularClass\n */\n\nconst webpack = require('webpack');\nconst helpers = require('./helpers');\n\n/*\n * Webp"
  },
  {
    "path": "admin/config/webpack.dev.js",
    "chars": 4920,
    "preview": "/**\n * @author: @AngularClass\n */\n\nconst helpers = require('./helpers');\nconst webpackMerge = require('webpack-merge'); "
  },
  {
    "path": "admin/config/webpack.github-deploy.js",
    "chars": 2557,
    "preview": "/**\n * @author: @AngularClass\n */\nconst helpers = require('./helpers');\nconst ghDeploy = require('./github-deploy');\ncon"
  },
  {
    "path": "admin/config/webpack.prod.js",
    "chars": 7436,
    "preview": "/**\n * @author: @AngularClass\n */\n\nconst helpers = require('./helpers');\nconst webpackMerge = require('webpack-merge'); "
  },
  {
    "path": "admin/config/webpack.test.js",
    "chars": 6339,
    "preview": "/**\n * @author: @AngularClass\n */\n\nconst helpers = require('./helpers');\n\n/**\n * Webpack Plugins\n */\nconst ProvidePlugin"
  },
  {
    "path": "admin/karma.conf.js",
    "chars": 125,
    "preview": "/**\n * @author: @AngularClass\n */\n\n// Look in ./config for karma.conf.js\nmodule.exports = require('./config/karma.conf.j"
  },
  {
    "path": "admin/package.json",
    "chars": 6300,
    "preview": "{\n    \"name\": \"angular2-webpack-starter\",\n    \"version\": \"5.0.5\",\n    \"description\": \"An Angular 2 Webpack Starter kit f"
  },
  {
    "path": "admin/protractor.conf.js",
    "chars": 142,
    "preview": "/**\n * @author: @AngularClass\n */\n\n// look in ./config for protractor.conf.js\nexports.config = require('./config/protrac"
  },
  {
    "path": "admin/src/app/app.container.ts",
    "chars": 474,
    "preview": "import { Component, OnInit } from '@angular/core';\n\nimport { State } from './core';\nimport { AuthService } from './share"
  },
  {
    "path": "admin/src/app/app.module.ts",
    "chars": 2621,
    "preview": "// import { HttpModule } from '@angular/http';\nimport { RouterModule } from '@angular/router';\n// import { CommonModule "
  },
  {
    "path": "admin/src/app/app.resolver.ts",
    "chars": 536,
    "preview": "import 'rxjs/add/observable/of';\nimport { Injectable } from '@angular/core';\nimport { Observable } from 'rxjs/Observable"
  },
  {
    "path": "admin/src/app/components/alert/alert.component.ts",
    "chars": 1455,
    "preview": "import { get, has } from 'lodash';\nimport { Component, Input, Output, EventEmitter, OnChanges } from '@angular/core';\n\ne"
  },
  {
    "path": "admin/src/app/components/alert/alert.template.html",
    "chars": 451,
    "preview": "<div *ngIf=\"visible\" [class]=\"model.classes\">\n  <button *ngIf=\"model.close && !model.autoHide\" type=\"button\" class=\"clos"
  },
  {
    "path": "admin/src/app/components/breadcrumb/crumb.component.ts",
    "chars": 1485,
    "preview": "import { CrumbService } from './crumb.service';\nimport { Component, OnInit } from '@angular/core';\nimport { Router, Navi"
  },
  {
    "path": "admin/src/app/components/breadcrumb/crumb.service.ts",
    "chars": 722,
    "preview": "import { Injectable } from '@angular/core';\nimport { get, has } from 'lodash';\n\nexport interface CrumbTreeModel {\n  [key"
  },
  {
    "path": "admin/src/app/components/breadcrumb/crumb.template.html",
    "chars": 553,
    "preview": "<section class=\"content-header\">\n<!--\n  <h1 *ngIf=\"hasCrumbProperty(activeUrl, 'title')\">\n    {{getCrumbProperty(activeU"
  },
  {
    "path": "admin/src/app/components/breadcrumb/index.ts",
    "chars": 107,
    "preview": "export { Crumb } from './crumb.component';\nexport { CrumbService, CrumbTreeModel } from './crumb.service';\n"
  },
  {
    "path": "admin/src/app/components/combobox/combo.component.ts",
    "chars": 1582,
    "preview": "import { FormControl, FormGroup, Validators } from '@angular/forms';\nimport { Component, Input, OnInit, Output, EventEmi"
  },
  {
    "path": "admin/src/app/components/combobox/combo.template.html",
    "chars": 605,
    "preview": "<div class=\"combobox-container\" [formGroup]=\"formCombo\">\n  <div [class]=\"groupClass\">\n    <input (blur)=\"onOut($event)\" "
  },
  {
    "path": "admin/src/app/components/footer/footer.component.ts",
    "chars": 303,
    "preview": "import { Component, Input, OnInit } from '@angular/core';\n\nexport interface FooterModel {\n  rightHtml?: string;\n  leftHt"
  },
  {
    "path": "admin/src/app/components/footer/footer.template.html",
    "chars": 66,
    "preview": "<!-- Main Footer -->\n<footer class=\"main-footer\">\n  \n  \n</footer>\n"
  },
  {
    "path": "admin/src/app/components/header/header.component.ts",
    "chars": 749,
    "preview": "import { DOCUMENT } from '@angular/platform-browser';\nimport { Component, Output, EventEmitter, Inject } from '@angular/"
  },
  {
    "path": "admin/src/app/components/header/header.template.html",
    "chars": 499,
    "preview": "<!-- Main Header -->\n<header class=\"main-header\">\n  <ng-content select=\"[brand-tag]\"></ng-content>\n  <!-- Header Navbar "
  },
  {
    "path": "admin/src/app/components/index.ts",
    "chars": 1413,
    "preview": "export * from './breadcrumb';\nexport * from './modal/modal.component';\nexport * from './alert/alert.component';\nexport *"
  },
  {
    "path": "admin/src/app/components/modal/modal.component.ts",
    "chars": 1459,
    "preview": "import { isFunction } from 'lodash';\nimport {\n  Component, Input, Output, EventEmitter,\n  ElementRef, AfterViewInit, OnC"
  },
  {
    "path": "admin/src/app/components/modal/modal.template.html",
    "chars": 823,
    "preview": "<div class=\"modal fade\" id=\"{{idSelector}}\" tabindex=\"-1\" role=\"dialog\">\n  <div class=\"modal-dialog\" role=\"document\">\n  "
  },
  {
    "path": "admin/src/app/components/sidebar/sidebar.component.ts",
    "chars": 523,
    "preview": "import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';\n\nexport interface SideBarModel {\n  label"
  },
  {
    "path": "admin/src/app/components/sidebar/sidebar.template.html",
    "chars": 1029,
    "preview": "<aside class=\"main-sidebar\">\n\n  <!-- sidebar: style can be found in sidebar.less -->\n  <section class=\"sidebar\">\n\n<!-- \n"
  },
  {
    "path": "admin/src/app/components/smallbox/smallbox.component.ts",
    "chars": 325,
    "preview": "import { Component, Input } from '@angular/core';\n\nexport interface SmallBoxModel {\n  classBg?: string;\n  title?: string"
  },
  {
    "path": "admin/src/app/components/smallbox/smallbox.template.html",
    "chars": 433,
    "preview": "<div class=\"small-box bg-black\" style=\"background-color:#0b97d3 !important;\">\n  <div class=\"inner\">\n    <h3 *ngIf=\"model"
  },
  {
    "path": "admin/src/app/containers/+admin/acls/acls.container.ts",
    "chars": 1650,
    "preview": "import { Router } from '@angular/router';\nimport { URLSearchParams } from '@angular/http';\nimport { Title } from '@angul"
  },
  {
    "path": "admin/src/app/containers/+admin/acls/acls.template.html",
    "chars": 1577,
    "preview": "<div class=\"row\">\n  <modal-tag hasClose=\"true\" hasFooter=\"true\" hasAction=\"true\" idSelector=\"confirm\"></modal-tag>\n  <di"
  },
  {
    "path": "admin/src/app/containers/+admin/acls/index.ts",
    "chars": 33,
    "preview": "export * from './acls.container';"
  },
  {
    "path": "admin/src/app/containers/+admin/admin.container.ts",
    "chars": 4054,
    "preview": "import { Router } from '@angular/router';\nimport { Component, OnInit } from '@angular/core';\n\nimport { State, Container "
  },
  {
    "path": "admin/src/app/containers/+admin/admin.module.ts",
    "chars": 1328,
    "preview": "import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { Size, ShareModule, T"
  },
  {
    "path": "admin/src/app/containers/+admin/admin.routes.ts",
    "chars": 2152,
    "preview": "import { ModuleWithProviders } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { G"
  },
  {
    "path": "admin/src/app/containers/+admin/admin.template.html",
    "chars": 1413,
    "preview": "<div class=\"wrapper\">\n  <header-tag *ngIf=\"getProp(UIHEADER)\">\n    <div brand-tag>\n      <div class=\"logo\">\n        <spa"
  },
  {
    "path": "admin/src/app/containers/+admin/apis/apis.container.ts",
    "chars": 3978,
    "preview": "import { Router } from '@angular/router';\nimport { URLSearchParams } from '@angular/http';\nimport { Title } from '@angul"
  },
  {
    "path": "admin/src/app/containers/+admin/apis/apis.template.html",
    "chars": 3236,
    "preview": "<div class=\"row\">\n  <modal-tag hasClose=\"true\" hasFooter=\"true\" hasAction=\"true\" idSelector=\"confirm\"></modal-tag>\n  <di"
  },
  {
    "path": "admin/src/app/containers/+admin/apis/edit.container.ts",
    "chars": 3892,
    "preview": "import { isEmpty, kebabCase } from 'lodash';\n\nimport { Title } from '@angular/platform-browser';\nimport { Router, Activa"
  },
  {
    "path": "admin/src/app/containers/+admin/apis/index.ts",
    "chars": 136,
    "preview": "export * from './apis.container';\nexport * from './new.container';\nexport * from './edit.container';\nexport * from './pl"
  },
  {
    "path": "admin/src/app/containers/+admin/apis/new.container.ts",
    "chars": 3765,
    "preview": "import { Router } from '@angular/router';\nimport { Component, OnInit } from '@angular/core';\nimport { Title } from '@ang"
  },
  {
    "path": "admin/src/app/containers/+admin/apis/new.template.html",
    "chars": 5417,
    "preview": "<div *ngIf=\"alertModel\">\n  <alert-box [model]=\"alertModel\"></alert-box>\n</div>\n<div class=\"row\">\n  <div class=\"col-md-8\""
  },
  {
    "path": "admin/src/app/containers/+admin/apis/plugs.container.ts",
    "chars": 3312,
    "preview": "import { URLSearchParams } from '@angular/http';\nimport { Title } from '@angular/platform-browser';\nimport { FormControl"
  },
  {
    "path": "admin/src/app/containers/+admin/apis/plugs.template.html",
    "chars": 2573,
    "preview": "<div class=\"row\">\n  <div class=\"col-md-12\">\n    <div class=\"box\">\n      <div class=\"box-header with-border\">\n        <h3"
  },
  {
    "path": "admin/src/app/containers/+admin/cluster/cluster.container.ts",
    "chars": 1569,
    "preview": "import { Router } from '@angular/router';\nimport { URLSearchParams } from '@angular/http';\nimport { Title } from '@angul"
  },
  {
    "path": "admin/src/app/containers/+admin/cluster/cluster.template.html",
    "chars": 1061,
    "preview": "<div class=\"row\">\n  <modal-tag hasClose=\"true\" hasFooter=\"true\" hasAction=\"true\" idSelector=\"confirm\"></modal-tag>\n  <di"
  },
  {
    "path": "admin/src/app/containers/+admin/cluster/index.ts",
    "chars": 36,
    "preview": "export * from './cluster.container';"
  },
  {
    "path": "admin/src/app/containers/+admin/consumers/consumers.container.ts",
    "chars": 4141,
    "preview": "import { Router } from '@angular/router';\nimport { URLSearchParams } from '@angular/http';\nimport { Title } from '@angul"
  },
  {
    "path": "admin/src/app/containers/+admin/consumers/consumers.template.html",
    "chars": 2939,
    "preview": "<div class=\"row\">\n  <modal-tag hasClose=\"true\" hasFooter=\"true\" hasAction=\"true\" idSelector=\"confirm\"></modal-tag>\n  <di"
  },
  {
    "path": "admin/src/app/containers/+admin/consumers/edit.container.ts",
    "chars": 3170,
    "preview": "import { isEmpty, kebabCase } from 'lodash';\n\nimport { Title } from '@angular/platform-browser';\nimport { Router, Activa"
  },
  {
    "path": "admin/src/app/containers/+admin/consumers/index.ts",
    "chars": 107,
    "preview": "export * from './new.container';\nexport * from './edit.container';\nexport * from './consumers.container';\n\n"
  },
  {
    "path": "admin/src/app/containers/+admin/consumers/new.container.ts",
    "chars": 3143,
    "preview": "import { Router } from '@angular/router';\nimport { Component, OnInit } from '@angular/core';\nimport { Title } from '@ang"
  },
  {
    "path": "admin/src/app/containers/+admin/consumers/new.template.html",
    "chars": 2678,
    "preview": "<div *ngIf=\"alertModel\">\n  <alert-box [model]=\"alertModel\"></alert-box>\n</div>\n<div class=\"row\">\n  <div class=\"col-md-8\""
  },
  {
    "path": "admin/src/app/containers/+admin/dashboard/dashboard.container.ts",
    "chars": 3281,
    "preview": "import { Title } from '@angular/platform-browser';\nimport { Component, OnInit, OnDestroy } from '@angular/core';\n\nimport"
  },
  {
    "path": "admin/src/app/containers/+admin/dashboard/dashboard.template.html",
    "chars": 2309,
    "preview": "<div class=\"row\">\n  <div class=\"col-lg-3 col-xs-6\" *ngFor=\"let modelStatus of boxModel\">\n    <small-box [model]=\"modelSt"
  },
  {
    "path": "admin/src/app/containers/+admin/dashboard/index.ts",
    "chars": 39,
    "preview": "export * from './dashboard.container';\n"
  },
  {
    "path": "admin/src/app/containers/+admin/index.ts",
    "chars": 32,
    "preview": "export * from './admin.module';\n"
  },
  {
    "path": "admin/src/app/containers/+admin/plugins/details.container.ts",
    "chars": 1238,
    "preview": "import { ActivatedRoute } from '@angular/router';\nimport { Title } from '@angular/platform-browser';\nimport { Component,"
  },
  {
    "path": "admin/src/app/containers/+admin/plugins/details.template.html",
    "chars": 299,
    "preview": "<div class=\"row\">\n  <div class=\"col-md-12\">\n    <div class=\"box\">\n      <div class=\"box-header with-border\">\n        <h3"
  },
  {
    "path": "admin/src/app/containers/+admin/plugins/forms/control.base.ts",
    "chars": 1147,
    "preview": "import { Injectable } from '@angular/core';\nimport { FormControl } from '@angular/forms';\n\nexport interface ControlSigna"
  },
  {
    "path": "admin/src/app/containers/+admin/plugins/forms/form.manager.ts",
    "chars": 85368,
    "preview": "import { Injectable } from '@angular/core';\nimport { FormGroup, FormControl, Validators } from '@angular/forms';\n\nimport"
  },
  {
    "path": "admin/src/app/containers/+admin/plugins/forms/form.service.ts",
    "chars": 1202,
    "preview": "import { Injectable } from '@angular/core';\nimport { FormGroup } from '@angular/forms';\n\nimport { get, isString, isPlain"
  },
  {
    "path": "admin/src/app/containers/+admin/plugins/forms/index.ts",
    "chars": 64,
    "preview": "export * from './form.service';\nexport * from './form.manager';\n"
  },
  {
    "path": "admin/src/app/containers/+admin/plugins/index.ts",
    "chars": 156,
    "preview": "export * from './details.container';\nexport * from './plugins.container';\nexport * from './new.plugin.container';\nexport"
  },
  {
    "path": "admin/src/app/containers/+admin/plugins/new.consumer.container.ts",
    "chars": 3825,
    "preview": "import { FormGroup, FormControl } from '@angular/forms';\nimport { Title } from '@angular/platform-browser';\nimport { Act"
  },
  {
    "path": "admin/src/app/containers/+admin/plugins/new.consumer.template.html",
    "chars": 2317,
    "preview": "<div *ngIf=\"alertModel\">\n  <alert-box [model]=\"alertModel\"></alert-box>\n</div>\n<div class=\"row\">\n  <div class=\"col-md-8\""
  },
  {
    "path": "admin/src/app/containers/+admin/plugins/new.plugin.container.ts",
    "chars": 4755,
    "preview": "import { FormGroup, FormControl } from '@angular/forms';\nimport { Title } from '@angular/platform-browser';\nimport { Act"
  },
  {
    "path": "admin/src/app/containers/+admin/plugins/new.plugin.template.html",
    "chars": 2656,
    "preview": "<div *ngIf=\"alertModel\">\n  <alert-box [model]=\"alertModel\"></alert-box>\n</div>\n<div class=\"row\">\n  <div class=\"col-md-8\""
  },
  {
    "path": "admin/src/app/containers/+admin/plugins/plugins.container.ts",
    "chars": 1567,
    "preview": "import { Title } from '@angular/platform-browser';\nimport { Component, OnInit, OnDestroy } from '@angular/core';\n\nimport"
  },
  {
    "path": "admin/src/app/containers/+admin/plugins/plugins.template.html",
    "chars": 1158,
    "preview": "<div class=\"row\">\n  <div class=\"col-md-3\" style=\"padding-bottom:50px; !important\" *ngFor=\"let plug of available\">\n\n     "
  },
  {
    "path": "admin/src/app/containers/container.module.ts",
    "chars": 488,
    "preview": "import { NgModule } from '@angular/core';\n\nimport { HomeContainer } from './home';\nimport { LoginContainer, LoginGuard }"
  },
  {
    "path": "admin/src/app/containers/container.routes.ts",
    "chars": 541,
    "preview": "import { ModuleWithProviders } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { H"
  },
  {
    "path": "admin/src/app/containers/home/home.container.ts",
    "chars": 443,
    "preview": "import { Component, OnInit } from '@angular/core';\n\nimport { State } from '../../core';\n\n@Component({\n  moduleId: __file"
  },
  {
    "path": "admin/src/app/containers/home/index.ts",
    "chars": 34,
    "preview": "export * from './home.container';\n"
  },
  {
    "path": "admin/src/app/containers/index.ts",
    "chars": 72,
    "preview": "export * from './container.routes';\nexport * from './container.module';\n"
  },
  {
    "path": "admin/src/app/containers/login/index.ts",
    "chars": 35,
    "preview": "export * from './login.container';\n"
  },
  {
    "path": "admin/src/app/containers/login/login.container.ts",
    "chars": 3192,
    "preview": "import { Title } from '@angular/platform-browser';\nimport { CanActivate, Router } from '@angular/router';\nimport { Compo"
  },
  {
    "path": "admin/src/app/containers/login/login.template.html",
    "chars": 1953,
    "preview": "<div class=\"login-box\">\n  <div class=\"login-logo\">\n    <img src=\"assets/img/logo.png\">\n  </div>\n  <!-- /.login-logo -->\n"
  },
  {
    "path": "admin/src/app/core/configurator.ts",
    "chars": 2309,
    "preview": "import { Injectable, Inject } from '@angular/core';\n\nimport { isObject, mapKeys, set, startsWith } from 'lodash';\n\nimpor"
  },
  {
    "path": "admin/src/app/core/container.ts",
    "chars": 1012,
    "preview": "import { Injectable } from '@angular/core';\n\nimport { Descriptor } from './descriptor';\nimport { Subscription } from 'rx"
  },
  {
    "path": "admin/src/app/core/descriptor.ts",
    "chars": 1699,
    "preview": "import { set, get, has } from 'lodash';\nimport { Observable } from 'rxjs/Observable';\nimport { Injectable, EventEmitter "
  },
  {
    "path": "admin/src/app/core/index.ts",
    "chars": 181,
    "preview": "export * from './state';\nexport * from './container';\nexport * from './descriptor';\nexport * from './persistence';\nexpor"
  },
  {
    "path": "admin/src/app/core/json.formatter.ts",
    "chars": 14678,
    "preview": "/**\n * Credits to: https://github.com/mohsen1\n * This code was from is tool only refactor a bit.\n */\n\nimport { Injectabl"
  },
  {
    "path": "admin/src/app/core/persistence.ts",
    "chars": 1077,
    "preview": "import { Injectable } from '@angular/core';\n\nconst STORE = require('store');\n\n/**\n * Class to persist data on local stor"
  },
  {
    "path": "admin/src/app/core/state.ts",
    "chars": 1103,
    "preview": "import { Subject } from 'rxjs/Subject';\nimport { Injectable } from '@angular/core';\nimport { Observable } from 'rxjs/Obs"
  },
  {
    "path": "admin/src/app/environment.ts",
    "chars": 1719,
    "preview": "// Angular 2\n// rc2 workaround\nimport { OpaqueToken } from '@angular/core';\nimport { enableProdMode, ApplicationRef, Err"
  },
  {
    "path": "admin/src/app/index.ts",
    "chars": 30,
    "preview": "export * from './app.module';\n"
  },
  {
    "path": "admin/src/app/shared/adapters/driver.ts",
    "chars": 1148,
    "preview": "import { Injectable, Injector, Inject } from '@angular/core';\n\nimport { SYMBOLS } from '../constants';\nimport { RestAdap"
  },
  {
    "path": "admin/src/app/shared/adapters/index.ts",
    "chars": 388,
    "preview": "export * from './driver';\nexport * from './rest.adapter';\n\nimport { Http } from '@angular/http';\nimport { Injector } fro"
  },
  {
    "path": "admin/src/app/shared/adapters/rest.adapter.ts",
    "chars": 4391,
    "preview": "import 'rxjs/add/operator/catch';\nimport 'rxjs/add/observable/throw';\n\nimport { Observable } from 'rxjs/Observable';\nimp"
  },
  {
    "path": "admin/src/app/shared/constants.ts",
    "chars": 2423,
    "preview": "const STORE = require('store');\n\nexport const SYMBOLS = {\n  ADAPTERS: {\n    REST: 'REST'\n  },\n  USER: 'user',\n  ROUTES: "
  },
  {
    "path": "admin/src/app/shared/core.module.ts",
    "chars": 820,
    "preview": "import { CommonModule } from '@angular/common';\nimport { ModuleWithProviders, NgModule, Optional, SkipSelf } from '@angu"
  },
  {
    "path": "admin/src/app/shared/directives/fileselect.directive.ts",
    "chars": 2202,
    "preview": "import {\n  Directive,\n  ElementRef,\n  EventEmitter,\n  Input,\n  Output,\n  HostListener\n} from '@angular/core';\n\nimport { "
  },
  {
    "path": "admin/src/app/shared/directives/index.ts",
    "chars": 111,
    "preview": "export * from './size.directive';\nexport * from './tooltip.directive';\nexport * from './fileselect.directive';\n"
  },
  {
    "path": "admin/src/app/shared/directives/size.directive.ts",
    "chars": 895,
    "preview": "import { Directive, Input, ElementRef, AfterViewInit } from '@angular/core';\n\n@Directive({\n  selector: '[size]'\n})\nexpor"
  },
  {
    "path": "admin/src/app/shared/directives/tooltip.directive.ts",
    "chars": 729,
    "preview": "import { Directive, ElementRef, HostListener, Input, Renderer } from '@angular/core';\n\n@Directive({\n  selector: '[toolti"
  },
  {
    "path": "admin/src/app/shared/index.ts",
    "chars": 204,
    "preview": "export * from './models';\nexport * from './adapters';\nexport * from './services';\nexport * from './constants';\nexport * "
  },
  {
    "path": "admin/src/app/shared/models/apis.model.ts",
    "chars": 1202,
    "preview": "import { has, isObject } from 'lodash';\nimport { Injectable } from '@angular/core';\nimport { BaseModel, BaseModelCollect"
  },
  {
    "path": "admin/src/app/shared/models/base.model.ts",
    "chars": 873,
    "preview": "import { Subject } from 'rxjs/Subject';\nimport { Observable } from 'rxjs/Observable';\nimport { get, has, set, unset } fr"
  },
  {
    "path": "admin/src/app/shared/models/consumers.model.ts",
    "chars": 1070,
    "preview": "import { has, isObject } from 'lodash';\nimport { Injectable } from '@angular/core';\nimport { BaseModel, BaseModelCollect"
  },
  {
    "path": "admin/src/app/shared/models/index.ts",
    "chars": 247,
    "preview": "export * from './apis.model';\nexport * from './base.model';\nexport * from './kong.model';\nexport * from './menu.model';\n"
  },
  {
    "path": "admin/src/app/shared/models/kong.model.ts",
    "chars": 2371,
    "preview": "import { BaseModel } from './base.model';\nimport { Injectable } from '@angular/core';\n\nexport interface KongModelTimer {"
  },
  {
    "path": "admin/src/app/shared/models/menu.model.ts",
    "chars": 1268,
    "preview": "import { BaseModel } from './base.model';\nimport { Injectable } from '@angular/core';\n\nexport interface MenuModelItem {\n"
  },
  {
    "path": "admin/src/app/shared/models/plugins/acl.model.ts",
    "chars": 214,
    "preview": "import { BaseModel } from '../base.model';\n\nexport class ACLModelConfig extends BaseModel {\n  name: string;\n  whitelist:"
  },
  {
    "path": "admin/src/app/shared/models/plugins/basic.model.ts",
    "chars": 273,
    "preview": "import { BaseModel } from '../base.model';\n\nexport class BasicModelConfig extends BaseModel {\n  name: string;\n  /* tslin"
  },
  {
    "path": "admin/src/app/shared/models/plugins/bot.model.ts",
    "chars": 152,
    "preview": "import { BaseModel } from '../base.model';\n\nexport class BotModelConfig extends BaseModel {\n  name: string;\n  whitelist:"
  },
  {
    "path": "admin/src/app/shared/models/plugins/correlation.model.ts",
    "chars": 235,
    "preview": "import { BaseModel } from '../base.model';\n\nexport class CorrelationModelConfig extends BaseModel {\n  name: string;\n  /*"
  },
  {
    "path": "admin/src/app/shared/models/plugins/cors.model.ts",
    "chars": 313,
    "preview": "import { BaseModel } from '../base.model';\n\nexport class CorsModelConfig extends BaseModel {\n  name: string;\n  origin: s"
  },
  {
    "path": "admin/src/app/shared/models/plugins/hmac.model.ts",
    "chars": 334,
    "preview": "import { BaseModel } from '../base.model';\n\nexport class HMacModelConfig extends BaseModel {\n  name: string;\n  /* tslint"
  },
  {
    "path": "admin/src/app/shared/models/plugins/index.ts",
    "chars": 522,
    "preview": "export * from './basic.model';\nexport * from './key.model';\nexport * from './oauth.model';\nexport * from './hmac.model';"
  },
  {
    "path": "admin/src/app/shared/models/plugins/ip.model.ts",
    "chars": 219,
    "preview": "import { BaseModel } from '../base.model';\n\nexport class IPModelConfig extends BaseModel {\n  name: string;\n  /* tslint:d"
  },
  {
    "path": "admin/src/app/shared/models/plugins/jwt.model.ts",
    "chars": 435,
    "preview": "import { BaseModel } from '../base.model';\n\nexport class JWTModelConfig extends BaseModel {\n  name: string;\n  /* tslint:"
  },
  {
    "path": "admin/src/app/shared/models/plugins/key.model.ts",
    "chars": 272,
    "preview": "import { BaseModel } from '../base.model';\n\nexport class KeyModelConfig extends BaseModel {\n  name: string;\n  /* tslint:"
  },
  {
    "path": "admin/src/app/shared/models/plugins/ldap.model.ts",
    "chars": 379,
    "preview": "import { BaseModel } from '../base.model';\n\nexport class LdapModelConfig extends BaseModel {\n  name: string;\n  /* tslint"
  },
  {
    "path": "admin/src/app/shared/models/plugins/oauth.model.ts",
    "chars": 731,
    "preview": "import { BaseModel } from '../base.model';\n\nexport const OAUTH_ENDPOINTS = {\n  AUTHORIZE: '/oauth2/authorize',\n  TOKEN: "
  },
  {
    "path": "admin/src/app/shared/models/plugins/rate.model.ts",
    "chars": 413,
    "preview": "import { BaseModel } from '../base.model';\n\nexport class RateModelConfig extends BaseModel {\n  name: string;\n  /* tslint"
  },
  {
    "path": "admin/src/app/shared/models/plugins/request.limiting.model.ts",
    "chars": 226,
    "preview": "import { BaseModel } from '../base.model';\n\nexport class RequestSizeLimitingModelConfig extends BaseModel {\n  name: stri"
  },
  {
    "path": "admin/src/app/shared/models/plugins/request.transformer.model.ts",
    "chars": 681,
    "preview": "import { BaseModel } from '../base.model';\n\nexport class RequestTransformerModelConfig extends BaseModel {\n  name: strin"
  },
  {
    "path": "admin/src/app/shared/models/plugins/response.limiting.model.ts",
    "chars": 389,
    "preview": "import { BaseModel } from '../base.model';\n\nexport class ResponseRateLimitingModelConfig extends BaseModel {\n  name: str"
  },
  {
    "path": "admin/src/app/shared/models/plugins/ssl.model.ts",
    "chars": 249,
    "preview": "import { BaseModel } from '../base.model';\n\nexport class SSLModelConfig extends BaseModel {\n  name: string;\n  cert: any;"
  },
  {
    "path": "admin/src/app/shared/models/plugins.model.ts",
    "chars": 6200,
    "preview": "import { has, isObject } from 'lodash';\nimport { Injectable } from '@angular/core';\nimport { BaseModel, BaseModelCollect"
  },
  {
    "path": "admin/src/app/shared/models/status.model.ts",
    "chars": 1150,
    "preview": "import { BaseModel } from './base.model';\nimport { Injectable } from '@angular/core';\n\nexport interface StatusModelResou"
  },
  {
    "path": "admin/src/app/shared/services/acls.service.ts",
    "chars": 1162,
    "preview": "import { Injectable, Injector } from '@angular/core';\nimport { Headers, RequestOptions, URLSearchParams } from '@angular"
  },
  {
    "path": "admin/src/app/shared/services/apis.service.ts",
    "chars": 4603,
    "preview": "import { Injectable, Injector } from '@angular/core';\nimport { Headers, RequestOptions, URLSearchParams } from '@angular"
  },
  {
    "path": "admin/src/app/shared/services/auth.service.ts",
    "chars": 2766,
    "preview": "import 'rxjs/add/operator/do';\nimport { Observable } from 'rxjs/Observable';\n\nimport { FormControl } from '@angular/form"
  },
  {
    "path": "admin/src/app/shared/services/base.service.ts",
    "chars": 913,
    "preview": "import { Driver } from '../adapters';\n\nimport { Injectable, Injector, Inject } from '@angular/core';\n\n/**\n * Class to be"
  },
  {
    "path": "admin/src/app/shared/services/cluster.service.ts",
    "chars": 1151,
    "preview": "import { Injectable, Injector } from '@angular/core';\nimport { Headers, RequestOptions, URLSearchParams } from '@angular"
  },
  {
    "path": "admin/src/app/shared/services/consumers.service.ts",
    "chars": 3960,
    "preview": "import { Injectable, Injector } from '@angular/core';\nimport { Headers, RequestOptions, URLSearchParams } from '@angular"
  },
  {
    "path": "admin/src/app/shared/services/guard.service.ts",
    "chars": 1644,
    "preview": "import { Injectable } from '@angular/core';\nimport { CanActivate, Router } from '@angular/router';\n\nimport { Observable "
  },
  {
    "path": "admin/src/app/shared/services/index.ts",
    "chars": 538,
    "preview": "export * from './auth.service';\nexport * from './base.service';\nexport * from './guard.service';\nexport * from './apis.s"
  },
  {
    "path": "admin/src/app/shared/services/plugins.service.ts",
    "chars": 2582,
    "preview": "import { Injectable, Injector } from '@angular/core';\nimport { Headers, RequestOptions, URLSearchParams } from '@angular"
  },
  {
    "path": "admin/src/app/shared/services/status.service.ts",
    "chars": 1850,
    "preview": "import { Injectable, Injector } from '@angular/core';\nimport { Headers, RequestOptions } from '@angular/http';\n\nimport {"
  },
  {
    "path": "admin/src/app/shared/services/uploader.service.ts",
    "chars": 7929,
    "preview": "import { Injectable, EventEmitter } from '@angular/core';\n\nimport { humanizeBytes } from '../constants';\n\nexport interfa"
  },
  {
    "path": "admin/src/app/shared/share.module.ts",
    "chars": 355,
    "preview": "import { HttpModule } from '@angular/http';\nimport { NgModule } from '@angular/core';\nimport { CommonModule } from '@ang"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/.csslintrc",
    "chars": 545,
    "preview": "{\n  \"adjoining-classes\": false,\n  \"box-sizing\": false,\n  \"box-model\": false,\n  \"compatible-vendor-prefixes\": false,\n  \"f"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/404_500_errors.less",
    "chars": 702,
    "preview": "/*\n * Page: 400 and 500 error pages\n * ------------------------------\n */\n.error-page {\n  width: 600px;\n  margin: 20px a"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/AdminLTE.less",
    "chars": 1654,
    "preview": "/*!\n *   AdminLTE v2.3.5\n *   Author: Almsaeed Studio\n *\t Website: Almsaeed Studio <http://almsaeedstudio.com>\n *   Lice"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/alerts.less",
    "chars": 641,
    "preview": "/*\n * Component: alert\n * ----------------\n */\n\n.alert {\n  .border-radius(3px);\n  h4 {\n    font-weight: 600;\n  }\n  .icon"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/bootstrap-social.less",
    "chars": 3041,
    "preview": "/*\n * Social Buttons for Bootstrap\n *\n * Copyright 2013-2015 Panayiotis Lipiridis\n * Licensed under the MIT License\n *\n "
  },
  {
    "path": "admin/src/assets/build/adminlte-less/boxes.less",
    "chars": 8032,
    "preview": "/*\n * Component: Box\n * --------------\n */\n.box {\n  position: relative;\n  .border-radius(@box-border-radius);\n  backgrou"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/buttons.less",
    "chars": 3132,
    "preview": "/*\n * Component: Button\n * -----------------\n */\n\n.btn {\n  .border-radius(@btn-border-radius);\n  .box-shadow(@btn-boxsha"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/callout.less",
    "chars": 846,
    "preview": "/*\n * Component: Callout\n * ------------------\n */\n\n// Base styles (regardless of theme)\n.callout {\n  .border-radius(3px"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/carousel.less",
    "chars": 268,
    "preview": "/*\n * Component: Carousel\n * -------------------\n */\n.carousel-control {\n  &.left,\n  &.right {\n    background-image: non"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/control-sidebar.less",
    "chars": 5485,
    "preview": "/*\n * Component: Control sidebar. By default, this is the right sidebar.\n */\n//The sidebar's background control class\n//"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/core.less",
    "chars": 2893,
    "preview": "/*\n * Core: General Layout Style\n * -------------------------\n */\nhtml,\nbody {\n  min-height: 100%;\n  .layout-boxed & {\n "
  },
  {
    "path": "admin/src/assets/build/adminlte-less/direct-chat.less",
    "chars": 3055,
    "preview": "/*\n * Component: Direct Chat\n * ----------------------\n */\n.direct-chat {\n  .box-body {\n    .border-bottom-radius(0);\n  "
  },
  {
    "path": "admin/src/assets/build/adminlte-less/dropdown.less",
    "chars": 6866,
    "preview": "/*\n * Component: Dropdown menus\n * -------------------------\n */\n\n/*Dropdowns in general*/\n.dropdown-menu {\n  box-shadow"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/forms.less",
    "chars": 1811,
    "preview": "/*\n * Component: Form\n * ---------------\n */\n.form-control {\n  .border-radius(@input-radius);\n  box-shadow: none;\n  bord"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/fullcalendar.less",
    "chars": 1528,
    "preview": "/*\n * Plugin: Full Calendar\n * ---------------------\n */\n//Fullcalendar buttons\n.fc-button {\n  background: #f4f4f4;\n  ba"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/header.less",
    "chars": 4797,
    "preview": "/*\n * Component: Main Header\n * ----------------------\n */\n\n.main-header {\n  position: relative;\n  max-height: 100px;\n  "
  },
  {
    "path": "admin/src/assets/build/adminlte-less/info-box.less",
    "chars": 1135,
    "preview": "/*\n * Component: Info Box\n * -------------------\n */\n.info-box {\n  display: block;\n  min-height: 90px;\n  background: #ff"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/invoice.less",
    "chars": 201,
    "preview": "/*\n * Page: Invoice\n * -------------\n */\n\n.invoice {\n  position: relative;\n  background: #fff;\n  border: 1px solid #f4f4"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/labels.less",
    "chars": 322,
    "preview": "/*\n * Component: Label\n * ----------------\n */\n.label-default {\n  background-color: @gray;\n  color: #444;\n}\n\n.label-dang"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/lockscreen.less",
    "chars": 1143,
    "preview": "/*\n * Page: Lock Screen\n * -----------------\n */\n/* ADD THIS CLASS TO THE <BODY> TAG */\n.lockscreen {\n  background: @gra"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/login_and_register.less",
    "chars": 703,
    "preview": "/*\n * Page: Login & Register\n * ----------------------\n */\n\n.login-logo,\n.register-logo {\n  font-size: 35px;\n  text-alig"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/mailbox.less",
    "chars": 1221,
    "preview": "/*\n * Page: Mailbox\n * -------------\n */\n.mailbox-messages {\n  > .table {\n    margin: 0;\n  }\n}\n\n.mailbox-controls {\n  pa"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/miscellaneous.less",
    "chars": 8701,
    "preview": "/*\n * General: Miscellaneous\n * ----------------------\n */\n// 10px padding and margins\n.pad {\n  padding: 10px;\n}\n\n.margi"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/mixins.less",
    "chars": 7068,
    "preview": "//AdminLTE mixins\n//===============\n\n//Changes the color and the hovering properties of the navbar\n.navbar-variant(@colo"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/modal.less",
    "chars": 1298,
    "preview": "/*\n * Component: modal\n * ----------------\n */\n.modal {\n  background: rgba(0, 0, 0, .3);\n}\n\n.modal-content {\n  .border-r"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/navs.less",
    "chars": 3831,
    "preview": "/*\n * Component: Nav\n * --------------\n */\n\n.nav {\n  > li > a:hover,\n  > li > a:active,\n  > li > a:focus {\n    color: #4"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/print.less",
    "chars": 967,
    "preview": "/*\n * Misc: print\n * -----------\n */\n@media print {\n  //Add to elements that you do not want to show when printing\n  .no"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/products.less",
    "chars": 776,
    "preview": "/*\n * Component: Products List\n * ------------------------\n */\n.products-list {\n  list-style: none;\n  margin: 0;\n  paddi"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/profile.less",
    "chars": 444,
    "preview": "/*\n * Page: Profile\n * -------------\n */\n\n.profile-user-img {\n  margin: 0 auto;\n  width: 100px;\n  padding: 3px;\n  border"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/progress-bars.less",
    "chars": 1677,
    "preview": "/*\n * Component: Progress Bar\n * -----------------------\n */\n\n//General CSS\n.progress,\n.progress > .progress-bar {\n  .bo"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/select2.less",
    "chars": 2446,
    "preview": "/*\n * Plugin: Select2\n * ---------------\n */\n\n//Signle select\n.select2-container--default,\n.select2-selection {\n  &.sele"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/sidebar-mini.less",
    "chars": 3686,
    "preview": "/*\n * Component: Sidebar Mini\n */\n\n//Add sidebar-mini class to the body tag to activate this feature\n.sidebar-mini {\n  /"
  },
  {
    "path": "admin/src/assets/build/adminlte-less/sidebar.less",
    "chars": 2870,
    "preview": "/*\n * Component: Sidebar\n * ------------------\n */\n//Main Sidebar\n// ``` .left-side has been deprecated as of 2.0.0 in f"
  }
]

// ... and 546 more files (download for full content)

About this extraction

This page contains the full source code of the FredHutch/Oncoscape GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 746 files (168.5 MB), approximately 26.3M tokens, and a symbol index with 42751 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!