All Projects → genome-nexus → genome-nexus

genome-nexus / genome-nexus

Licence: MIT license
Backend server for Genome Nexus

Programming Languages

java
68154 projects - #9 most used programming language
Jupyter Notebook
11667 projects

Projects that are alternatives of or similar to genome-nexus

cacao
Callable Cancer Loci - assessment of sequencing coverage for actionable and pathogenic loci in cancer
Stars: ✭ 21 (-34.37%)
Mutual labels:  cancer-genomics
civic-server
Backend Server for CIViC Project
Stars: ✭ 39 (+21.88%)
Mutual labels:  cancer-genomics
memo-dev
Knowledge base, Today I Learned, Cheatsheet ... Call this as you want ...
Stars: ✭ 13 (-59.37%)
Mutual labels:  knowledgebase
good-reads
List of inspiring articles, blogs, tutorials and books. Tech stuff.
Stars: ✭ 14 (-56.25%)
Mutual labels:  knowledgebase
katapedia
この書は常に未完成である。内容の正誤に保証はない。 ITエンジニアとして役になったTips、よく忘れることを記す。 ブログに記載してもよかったが、水平方向の情報を見つけやすい本の形式をとることにした
Stars: ✭ 30 (-6.25%)
Mutual labels:  knowledgebase
orchid
A novel management, annotation, and machine learning framework for analyzing cancer mutations
Stars: ✭ 29 (-9.37%)
Mutual labels:  cancer-genomics
Knowledge-Base
record every requirement and solution here
Stars: ✭ 31 (-3.12%)
Mutual labels:  knowledgebase
raneto-docker
Docker container for Markdown based Raneto Knowledgebase
Stars: ✭ 33 (+3.13%)
Mutual labels:  knowledgebase
KBE
Node.js application to extract the knowledge represented in Google infoboxes (aka Google Knowlege Graph Panel)
Stars: ✭ 27 (-15.62%)
Mutual labels:  knowledgebase
Windows-Hacks
This repository contains registry scripts, batch files and some knowledge to help you make your Windows do awesome stuff (at least by my standards).
Stars: ✭ 75 (+134.38%)
Mutual labels:  knowledgebase
deTiN
DeTiN is designed to measure tumor-in-normal contamination and improve somatic variant detection sensitivity when using a contaminated matched control.
Stars: ✭ 46 (+43.75%)
Mutual labels:  cancer-genomics
openshift-wiki
Gitbook URL of WIKI
Stars: ✭ 16 (-50%)
Mutual labels:  knowledgebase
yeonghoey
A personal knowledge base
Stars: ✭ 13 (-59.37%)
Mutual labels:  knowledgebase
SCICoNE
Single-cell copy number calling and event history reconstruction.
Stars: ✭ 20 (-37.5%)
Mutual labels:  cancer-genomics
IMPACT-Pipeline
Framework to process and call somatic variation from NGS dataset generated using MSK-IMPACT assay
Stars: ✭ 52 (+62.5%)
Mutual labels:  cancer-genomics
bootstrapKnowledgeBaseTheme
Free Bootstrap Knowledge Base Theme
Stars: ✭ 58 (+81.25%)
Mutual labels:  knowledgebase
SigProfilerSimulator
SigProfilerSimulator allows realistic simulations of mutational patterns and mutational signatures in cancer genomes. The tool can be used to simulate signatures of single point mutations, double point mutations, and insertion/deletions. Further, the tool makes use of SigProfilerMatrixGenerator and SigProfilerPlotting.
Stars: ✭ 18 (-43.75%)
Mutual labels:  cancer-genomics
maui
Multi-omics Autoencoder Integration: Deep learning-based heterogenous data analysis toolkit
Stars: ✭ 42 (+31.25%)
Mutual labels:  cancer-genomics
kglib
TypeDB-ML is the Machine Learning integrations library for TypeDB
Stars: ✭ 523 (+1534.38%)
Mutual labels:  knowledgebase
writing
New posts will be on Substack
Stars: ✭ 74 (+131.25%)
Mutual labels:  knowledgebase

Genome Nexus 🧬

Genome Nexus, a comprehensive one-stop resource for fast, automated and high-throughput annotation and interpretation of genetic variants in cancer. Genome Nexus integrates information from a variety of existing resources, including databases that convert DNA changes to protein changes, predict the functional effects of protein mutations, and contain information about mutation frequencies, gene function, variant effects, and clinical actionability.

Documentation 📖

See the docs

Run 💻

Alternative 1 - run genome-nexus, mongoDB and genome-nexus-vep in docker containers

First, set environment variables for Ensembl Release, VEP Assembly, location of VEP Cache, and species (since a mouse instalation is supported). If these are not, the default values from .env will be set.

The reference genome and Ensembl release must be consistent with a version in genome-nexus-importer/data/. For example grch37_ensembl92, grch38_ensembl92 or grch38_ensembl95:

export REF_ENSEMBL_VERSION=grch38_ensembl92

If you want to setup Genome Nexus for mouse, also set the SPECIES variable to 'mus_musculus'. Also see the docs to create a mouse database.

export SPECIES=mus_musculus

If you would like to do local VEP annotations instead of using the public Ensembl API, please uncomment # gn_vep.region.url=http://localhost:6060/vep/human/region/VARIANT in your application.properties. This will require you to download the VEP cache files for the preferred Ensembl Release and Reference genome, see our documentation on downloading the Genome Nexus VEP Cache. This will take several hours.

# Set local cache dir
export VEP_CACHE=<local_vep_cache>

# GRCh38 or GRCh37
export VEP_ASSEMBLY=GRCh38

Run docker-compose to create images and containers:

docker-compose up --build -d

Run without recreating images:

docker-compose up -d

Run without Genome Nexus VEP:

# Start both the Web and DB (dependency of Web) containers
docker-compose up -d web

Stop and remove containers:

docker-compose down

Alternative 2 - run genome-nexus locally, but mongoDB in docker container

# the genomenexus/gn-mongo images comes with all the required tables imported
# change latest to different version if necessary (only need to run this once)
docker run --name=gn-mongo --restart=always -p 27017:27017 -d genomenexus/gn-mongo:latest 
mvn  -DskipTests clean install
java -jar web/target/web-*.war

Alternative 3 - install mongoDB locally and run with local java

Install mongoDB manually. Then follow instructions in genome-nexus-importer to initialize the database.

After that run this:

mvn clean install
java -jar web/target/web-*.war

Test Status 👷‍♀️

branch master rc
status Build Status Build Status

Deploy 🚀

Deploy

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].