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
- Host: GitHub
- URL: https://github.com/maayanlab/cfde_gene_pages
- Owner: MaayanLab
- License: other
- Created: 2021-06-28T15:57:19.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-10-05T21:11:56.000Z (over 2 years ago)
- Last Synced: 2025-01-22T03:15:47.647Z (about 1 year ago)
- Topics: cfde
- Language: JavaScript
- Homepage:
- Size: 63.9 MB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```