-
Notifications
You must be signed in to change notification settings - Fork 527
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2257 from cBioPortal/release-1.5.0
Release 1.5.0
- Loading branch information
Showing
418 changed files
with
16,493 additions
and
6,227 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
FROM tomcat:8-jre8 | ||
MAINTAINER Alexandros Sigaras <[email protected]>, Fedde Schaeffer <[email protected]> | ||
LABEL Description="cBioPortal for Cancer Genomics" | ||
ENV APP_NAME="cbioportal" \ | ||
PORTAL_HOME="/cbioportal" | ||
#======== Install Prerequisites ===============# | ||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
git \ | ||
libmysql-java \ | ||
patch \ | ||
python \ | ||
python-jinja2 \ | ||
python-mysqldb \ | ||
python-requests \ | ||
# install new versions of these packages backported to Debian stable; | ||
# Debian does not add new features or break backwards compatibility within | ||
# a stable release, but for these dependencies we need versions that do. | ||
&& apt-get install -y --no-install-recommends -t jessie-backports \ | ||
maven \ | ||
openjdk-8-jdk \ | ||
&& ln -s /usr/share/java/mysql-connector-java.jar "$CATALINA_HOME"/lib/ \ | ||
&& rm -rf $CATALINA_HOME/webapps/examples \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
#======== Configure cBioPortal ===========================# | ||
COPY . $PORTAL_HOME | ||
WORKDIR $PORTAL_HOME | ||
EXPOSE 8080 | ||
#======== Build cBioPortal on Startup ===============# | ||
CMD mvn -DskipTests clean install \ | ||
&& cp $PORTAL_HOME/portal/target/cbioportal*.war $CATALINA_HOME/webapps/cbioportal.war \ | ||
&& find $PWD/core/src/main/scripts/ -type f -executable \! -name '*.pl' -print0 | xargs -0 -- ln -st /usr/local/bin \ | ||
&& sh $CATALINA_HOME/bin/catalina.sh run |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# cBioPortal | ||
The cBioPortal for Cancer Genomics provides visualization, analysis, and download of large-scale cancer genomics data sets. The cBioPortal is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License, version 3, as published by the Free Software Foundation. | ||
|
||
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
|
@@ -9,10 +10,16 @@ If you would like to know how to setup a private instance of the portal and/or g | |
|
||
If you are interested in coordinating the development of new features, please contact [email protected]. | ||
|
||
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy) | ||
|
||
[![ZenHub] (https://raw.githubusercontent.com/ZenHubIO/support/master/zenhub-badge.png)] (https://zenhub.io) | ||
|
||
## Test status | ||
[![Build Status](https://travis-ci.org/cBioPortal/cbioportal.svg?branch=master)](https://travis-ci.org/cBioPortal/cbioportal) | ||
|
||
## Code Quality | ||
[![codebeat badge](https://codebeat.co/badges/0738d3c9-5ffe-4b61-80c4-abb5698d8d44)](https://codebeat.co/projects/github-com-cbioportal-cbioportal) | ||
|
||
## Documentation | ||
[![Documentation Status](https://readthedocs.org/projects/cbioportal/badge/?version=latest)](http://cbioportal.readthedocs.io/en/latest/?badge=latest) | ||
|
||
## Deployment | ||
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy) | ||
|
||
[![Docker Automated build](https://img.shields.io/docker/automated/jrottenberg/ffmpeg.svg)](https://hub.docker.com/r/cbioportal/cbioportal/) [![Docker Pulls](https://img.shields.io/docker/pulls/cbioportal/cbioportal.svg)](https://hub.docker.com/r/cbioportal/cbioportal/) [![Docker Stars](https://img.shields.io/docker/stars/cbioportal/cbioportal.svg)](https://hub.docker.com/r/cbioportal/cbioportal/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../cbioportal/persistence/dto/AltCount.java → ...org/mskcc/cbio/portal/model/AltCount.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package org.cbioportal.persistence.dto; | ||
package org.mskcc.cbio.portal.model; | ||
|
||
import java.io.Serializable; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
business/src/main/java/org/mskcc/cbio/portal/model/CosmicCount.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
package org.mskcc.cbio.portal.model; | ||
|
||
import java.io.Serializable; | ||
|
||
public class CosmicCount implements Serializable { | ||
|
||
private String cosmicMutationId; | ||
private String proteinChange; | ||
private String keyword; | ||
private Integer count; | ||
|
||
public String getCosmicMutationId() { | ||
return cosmicMutationId; | ||
} | ||
|
||
public void setCosmicMutationId(String cosmicMutationId) { | ||
this.cosmicMutationId = cosmicMutationId; | ||
} | ||
|
||
public String getProteinChange() { | ||
return proteinChange; | ||
} | ||
|
||
public void setProteinChange(String proteinChange) { | ||
this.proteinChange = proteinChange; | ||
} | ||
|
||
public String getKeyword() { | ||
return keyword; | ||
} | ||
|
||
public void setKeyword(String keyword) { | ||
this.keyword = keyword; | ||
} | ||
|
||
public Integer getCount() { | ||
return count; | ||
} | ||
|
||
public void setCount(Integer count) { | ||
this.count = count; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...l/persistence/dto/KeywordSampleCount.java → ...cbio/portal/model/KeywordSampleCount.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package org.cbioportal.persistence.dto; | ||
package org.mskcc.cbio.portal.model; | ||
|
||
import java.io.Serializable; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...rsistence/dto/MutatedGeneSampleCount.java → .../portal/model/MutatedGeneSampleCount.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package org.cbioportal.persistence.dto; | ||
package org.mskcc.cbio.portal.model; | ||
|
||
import java.io.Serializable; | ||
|
||
|
Oops, something went wrong.