nci-hcmi-catalog / portal

HCMI Searchable Catalog Portal
https://hcmi-searchable-catalog.nci.nih.gov/
BSD 3-Clause "New" or "Revised" License
6 stars 2 forks source link
hacktoberfest

HCMI Searchable Catalog

The HCMI Searchable Catalog allows users to browse and identify potential next-generation cancer models for use in research. Links to available associated molecular characterization and clinical data at the National Cancer Institute’s (NCI) Genomic Data Commons (GDC), the European Genomephenome Archive (EGA), and the 3rd party HCMI Model Distributor will be available on each model page as the information is processed and validated.

This is a mono-repo containing the HCMI Portal UI, CMS server, and Arranger Search API server components.

Development

To work on this project, running the UI, CMS, and API on a local device, make sure your device has the dependencies listed below and then follow the steps in the Configuration, Migrations, and Quickstart sections.

Dependencies

This project runs on NodeJS v16.

Environment Configuration

All 3 of the HCMI applications require a .env file with configurable environment variables filled out before running the application. At the root level of each application (/ui, /cms, /api) there is a .env.schema file which lists the environment variables used in the application. Copy each schema file to the same location renamed .env and fill in the relevant details before running the quick start.

Configuration for Scripts/PM2

In /api and /cms there is a template for a pm2.config.js file. These files are used for configuration if you want to run the application using PM2. The PM2 config should have the same environment variables used in the .env files for each application.

The CMS config file is also used for the handful of convenience scripts written to help with ElasticSearch setup. If running these scripts, make sure the PM2 Config file has been filled out and make a note of which PM2 environment those variables are provided in (written into prd environment in the file committed to the repo).

WARNING: Be extra cautious not to commit the .env or PM2 config files with your local/environment secret values in it. It is reccomended to add these files to your local .gitignore configuration.

Migrations

First time setup will require variants being loaded into mongo via a migration in the cms/variant-migrations folder. Migrations require the global installation of the migrate-mongo package, npm i -g migrate-mongo. for more information visit https://www.npmjs.com/package/migrate-mongo.

To run the required migrations:

cd cms/variant-migrations
../../node_modules/.bin/migrate-mongo up -f migrate-mongo-config.js

Quickstart

  1. Run dependencies through docker:
docker-compose up
  1. Install node dependcies using yarn, from this project's root directory. This will not work correctly using npm i, the three projects are linked and yarn manages the shared dependencies.
yarn
  1. Run database migrations:
cd cms/variant-migrations
../../node_modules/.bin/migrate-mongo up -f migrate-mongo-config.js
  1. Initialize ElasticSearch: From the project root directory run the following command. Note that you may need to change the ENV value used to match the environment declared in the cms/pm2.config.json file setup.
ENV=prd npm run initializeEs
  1. Run the api:
cd api
yarn start
  1. Run the cms:
cd cms
yarn start
  1. Run the UI:
cd ui
yarn start

Running the UI will attempt to open the site in your browser.

These applications, when started with yarn, are running in a development mode and will be restarted automatically when you make any changes to their files.

Specs

https://wiki.oicr.on.ca/display/HCMI/HCMI+Spec+Guide

API Tech

UI Tech