All Projects → griffithlab → civic-client

griffithlab / civic-client

Licence: MIT License
Web client for CIViC: Clinical Interpretations of Variants in Cancer

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
Less
1899 projects

Projects that are alternatives of or similar to civic-client

civic-server
Backend Server for CIViC Project
Stars: ✭ 39 (-20.41%)
Mutual labels:  civic, cancer, variants, cancer-genomics, nci-itcr
SlicerRadiomics
A Slicer extension to provide a GUI around pyradiomics
Stars: ✭ 83 (+69.39%)
Mutual labels:  cancer, nci-itcr
TeamTeri
Genomics using open source tools, running on GCP or AWS
Stars: ✭ 30 (-38.78%)
Mutual labels:  variants, cancer-genomics
cacao
Callable Cancer Loci - assessment of sequencing coverage for actionable and pathogenic loci in cancer
Stars: ✭ 21 (-57.14%)
Mutual labels:  cancer, cancer-genomics
cpsr
Cancer Predisposition Sequencing Reporter (CPSR)
Stars: ✭ 44 (-10.2%)
Mutual labels:  cancer, cancer-genomics
civicmine
Text mining cancer biomarkers for the CIVIC database
Stars: ✭ 19 (-61.22%)
Mutual labels:  cancer
SigProfilerPlotting
SigProfilerPlotting provides a standard tool for displaying all types of mutational signatures as well as all types of mutational patterns in cancer genomes. The tool seamlessly integrates with other SigProfiler tools.
Stars: ✭ 31 (-36.73%)
Mutual labels:  cancer-genomics
oncoEnrichR
Cancer-dedicated gene set interpretation
Stars: ✭ 35 (-28.57%)
Mutual labels:  cancer
fast-blazor
Blazor component library for FluentUI. Microsoft's official lightweight wrapper around the FluentUI Web Components for use with .NET 6.0 Blazor applications
Stars: ✭ 928 (+1793.88%)
Mutual labels:  front-end-framework
civicstack
A repository for open source civic tools from many countries and organizations
Stars: ✭ 36 (-26.53%)
Mutual labels:  civic
revolver
REVOLVER - Repeated Evolution in Cancer
Stars: ✭ 52 (+6.12%)
Mutual labels:  cancer-genomics
rare-disease-wf
(WIP) best-practices workflow for rare disease
Stars: ✭ 47 (-4.08%)
Mutual labels:  variants
witty.er
What is true, thank you, ernestly. A large variant benchmarking tool analogous to hap.py for small variants.
Stars: ✭ 22 (-55.1%)
Mutual labels:  variants
classifying-cancer
A Python-Tensorflow neural network for classifying cancer data
Stars: ✭ 30 (-38.78%)
Mutual labels:  cancer
natural js
Natural-JS : Javascript Front-End Architecture Framework
Stars: ✭ 35 (-28.57%)
Mutual labels:  front-end-framework
purescript-pop
😃 A functional reactive programming (FRP) demo created with PureScript events and behaviors.
Stars: ✭ 33 (-32.65%)
Mutual labels:  front-end-framework
tagmeme
Simple tagged unions
Stars: ✭ 21 (-57.14%)
Mutual labels:  variants
pathway-mapper
PathwayMapper: An interactive and collaborative graphical curation tool for cancer pathways
Stars: ✭ 47 (-4.08%)
Mutual labels:  cancer-genomics
MTBseq source
MTBseq is an automated pipeline for mapping, variant calling and detection of resistance mediating and phylogenetic variants from illumina whole genome sequence data of Mycobacterium tuberculosis complex isolates.
Stars: ✭ 26 (-46.94%)
Mutual labels:  variants
shiny-iatlas
An interactive web portal for exploring immuno-oncology data
Stars: ✭ 43 (-12.24%)
Mutual labels:  cancer

civic-client

DOI

Developing for CIViC involves setting up a development environment. To get started quickly, we recommend launching an AWS EC2 instance from our pre-configured and maintained AMI (getting started wiki page).

Alternatively, you may set up your own local development environment using the following setup instructions.

To Install

civic-client uses yarn for development, build, and resource server tasks, so ensure that you have yarn (and nodeJS) installed and running. Yarn installation instructions are here:

https://yarnpkg.com/lang/en/docs/install/

Once you've installed Yarn, clone the civic-client repository and cd to it, then:

yarn install

Yarn will determine the packages it needs to install, download, and install them for you - it may take awhile. Then we need to install bower, which manages client-side packages:

yarn global add bower

Once bower is installed, use it to install civic-client's runtime libraries:

bower install

If bower becomes confused about which Angular version to use, pick the first one that offers version 1.3.15.

Development

CIViC client uses the gulp workflow system for serving, watching, building, and testing the client codebase. Let's install that:

yarn global add gulp

Once we have gulp installed, start up the CIViC server (execute rails s from the server's root directory), then start up the client server with:

gulp serve

Then load http://127.0.0.1:3001 in your browser. NOTE: use 127.0.0.1, not localhost. A couple of the OAuth providers we use for authentication will only work if the app is loaded from 127.0.0.1.

The serve tasks starts a static file server, and a proxy that routes calls to /api to the civic-server listening on port 3000. It serves the AngularJS application, and a starts a watch task which watches all files for changes and lints, builds and injects them into the index.html accordingly.

Production ready build - a.k.a. dist

To make the app ready for deploy to production run:

gulp build

The build task creates a ./dist folder with all scripts and stylesheets concatenated, minified, and versioned, also third party libraries installed with bower will be concatenated and minified into vendors.min.js and vendors.min.css respectively.

To test the build version of the app, execute:

gulp serve:dist

This task executes a build, then serves the /dist directory from the same port as the gulp serve task, http://127.0.0.1:3001/

Pulling Updates

As the civic-client is under heavy development, we'll be pushing releases to the master branch at a fairly rapid rate. Often, we'll update various packages and modules that are part of the workflow and/or production codebase. So after you do a git pull to update your local repository, be sure to:

yarn install
bower install

This will install any new packages or modules that the new updates require.

Related resources

Screenshots

Homepage: Homepage

Browse Genes in the CIViC database: Homepage

View an Evidence Item: Homepage

Edit a Gene: Homepage

View and comment on revisions to Genes, Variants, Evidence Items: Homepage

Catch up with recent CIViC activity: Homepage

Community leaderboards and user directory: Homepage

Git repositories related to the CIViC project

The CIViC source code and application are organized in a client-server model. The backend code is available in the civic-server repository and frontend code is available in the civic-client repository. Issues relating to curation are tracked in the civic-curation repository. An example of a Python client is available in the civic-api-client repository. Issues relating to public CIViC meetings are tracked in the civic-meeting repository.

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].