An open API service indexing awesome lists of open source software.

https://github.com/maayanlab/cfde_gene_pages

Common Fund Gene Landing Pages as a Dashboard
https://github.com/maayanlab/cfde_gene_pages

cfde

Last synced: 7 months ago
JSON representation

Common Fund Gene Landing Pages as a Dashboard

Awesome Lists containing this project

README

          

# CFDE Gene Pages

## Development

```bash
# install dependencies
npm install
# run in development
npm run dev
```

## Production

### Docker
```bash
docker-compose up
```

### Native
```bash
# prepare
npm run build
# run in production
npm run start
```

### Building Downloads
A `Makefile` was created for directly assembling the downloads from scratch, it takes some time to execute.

```bash
# install any necessary python dependencies
pip install -r requirements.txt

# build all downloads
make downloads
```