All Projects → cBioPortal → Cbioportal

cBioPortal / Cbioportal

Licence: agpl-3.0
cBioPortal for Cancer Genomics

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Cbioportal

crossref
Client for the Crossref API
Stars: ✭ 29 (-91.99%)
Mutual labels:  science
XArrayAndRasterio
Experimental code for loading/saving XArray DataArrays to Geographic Rasters using rasterio
Stars: ✭ 21 (-94.2%)
Mutual labels:  science
Jvarkit
Java utilities for Bioinformatics
Stars: ✭ 313 (-13.54%)
Mutual labels:  science
mightyscape-1.X
A maintained extension collection for Inkscape 1.0+, working on Windows and Linux
Stars: ✭ 23 (-93.65%)
Mutual labels:  science
qmflows
This library tackles the construction and efficient execution of computational chemistry workflows
Stars: ✭ 35 (-90.33%)
Mutual labels:  science
Pygeno
Personalized Genomics and Proteomics. Main diet: Ensembl, side dishes: SNPs
Stars: ✭ 261 (-27.9%)
Mutual labels:  cancer-genomics
civic-client
Web client for CIViC: Clinical Interpretations of Variants in Cancer
Stars: ✭ 49 (-86.46%)
Mutual labels:  cancer-genomics
Pandoc Scholar
Create beautiful and semantically meaningful articles with pandoc.
Stars: ✭ 342 (-5.52%)
Mutual labels:  science
pbcpy
Python package providing some useful tools when dealing with molecules and materials under periodic boundary conditions and uniform grids. This is a mirror of https://gitlab.com/ales.genova/pbcpy
Stars: ✭ 18 (-95.03%)
Mutual labels:  science
Calculatex
in progress pretty printing calculator language
Stars: ✭ 302 (-16.57%)
Mutual labels:  science
multiphysics
Interactive Multiphysics Simulation for Everyone
Stars: ✭ 41 (-88.67%)
Mutual labels:  science
MOT
Multi-threaded Optimization Toolbox
Stars: ✭ 28 (-92.27%)
Mutual labels:  science
Anvio
An analysis and visualization platform for 'omics data
Stars: ✭ 273 (-24.59%)
Mutual labels:  science
openfluid
OpenFLUID framework and applications
Stars: ✭ 19 (-94.75%)
Mutual labels:  science
Plasmapy
An open source Python package for plasma science that is under development
Stars: ✭ 334 (-7.73%)
Mutual labels:  science
ACVR2017
An Innovative Salient Object Detection Using Center-Dark Channel Prior
Stars: ✭ 20 (-94.48%)
Mutual labels:  science
Pymeasure
Scientific measurement library for instruments, experiments, and live-plotting
Stars: ✭ 255 (-29.56%)
Mutual labels:  science
Plantcv
Plant image analysis using OpenCV
Stars: ✭ 352 (-2.76%)
Mutual labels:  science
Awesome Sentinel
curated list of awesome tools, tutorials and APIs for Copernicus Sentinel satellite data
Stars: ✭ 335 (-7.46%)
Mutual labels:  science
Deep Learning Papers
Papers about deep learning ordered by task, date. Current state-of-the-art papers are labelled.
Stars: ✭ 3,054 (+743.65%)
Mutual labels:  science

cBioPortal

The cBioPortal for Cancer Genomics provides visualization, analysis, and download of large-scale cancer genomics data sets. For a short intro on cBioPortal, see these introductory slides.

If you would like to know how to setup a private instance of the portal and/or get set up for developing, see the documentation. For details on contributing code changes via pull requests, see our Contributing document.

If you are interested in coordinating the development of new features, please contact [email protected] or reach out on https://slack.cbioportal.org.

📘 Documentation

See https://docs.cbioportal.org

🤝 License

See LICENSE

💻 Run Backend

cBioPortal consists of several components, please read the Architecture docs to figure out what repo would be relevant to edit. If you e.g. only want to make frontend changes, one can directly edit the frontend repo instead. Read the instructions in that repo for more info on how to do frontend development. This repo only contains the backend part. Before editing the backend, it's good to read the backend code organization. For development of the backend repo one should first set up a database. Please follow the Docker deployment documentation to do so. Change the docker-compose file to use your image instead:

docker build -t cbioportal/cbioportal:my-dev-cbioportal-image -f docker/web-and-data/Dockerfile .

Note: internally we have a dev database available with the public data set that one can connect to directly. Please reach out on slack to get the credentials. It is usually best to use a small test dataset, but if a copy of the production database is necessary for e.g. fixing a bug specific to production data that can be useful.

🕵️‍♀️ Debugging

If you want to attach a debugger you can change the docker-compose.yml file to include the paramaters: -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005. <ake sure to expose that port by adding 5005:5005 in the ports section of the cbioportal container.

You can then use a JAVA IDE to connect to that port. E.g. in VSCode, one would add the following configuration to launch.json to connect:

{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "java",
            "name": "Debug (Attach)",
            "request": "attach",
            "hostName": "localhost",
            "port": 5005,
            "projectName": "cbioportal"
        }
    ]
}

🌳 Branch Information

main branch upcoming release branch later release candidate branch
Branch name master -- rc
Description All bug fixes and features not requiring database migrations go here. This code is either already in production or will be released this week Next release that requires database migrations. Thorough manual product review often takes place for this branch before release Later releases with features that require database migrations. This is useful to allow merging in new features without affecting the upcoming release. Could be seen as a development branch, but note that only high quality pull requests are merged. That is the feature should be pretty much ready for release after merge.
Live instance https://www.cbioportal.org / https://master.cbioportal.org -- https://rc.cbioportal.org
Live instance version https://www.cbioportal.org/api/info / https://master.cbioportal.org/api/info -- https://rc.cbioportal.org/api/info
Docker Image cbioportal/cbioportal:master -- cbioportal/cbioportal:rc
Kubernetes Config production / master -- rc
Status master build status -- Build Status

🚀 Releases

Release Notes on GitHub:

https://github.com/cBioPortal/cbioportal/releases

See also the cBioPortal News section for user focused release information:

https://www.cbioportal.org/news

Docker Images are available for each tag and branch:

https://hub.docker.com/repository/docker/cbioportal/cbioportal/tags

👉 Other Repos

Read the Architecture docs to see how these relate:

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