Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Bumped version to 1.2.0
  • Loading branch information
jenzopr committed Sep 5, 2017
1 parent 51571f0 commit 67c46b8
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGES
@@ -1,3 +1,9 @@
## 1.2.0 (2017-09-05)

- Added an UpSetR plot to summary.R to cancel the need for Vennerable R package
- Added proper help to uropa2gtf.R script
- Reflected changes in documentations

## 1.1.2 (2017-09-04)

- Added proper help for auxillary R scripts (exit code 0)
Expand Down
16 changes: 8 additions & 8 deletions README.md
Expand Up @@ -34,23 +34,23 @@ Installation and Command-line usage
------------------------------------
Make sure all prerequisites are met:

- [Python](http://continuum.io/downloads)
- [Python](http://continuum.io/downloads)
- download Anaconda for Linux version Python 2.7 to direction where python should be installed
- run ```bash Anaconda2-4.3.0-Linux-x86_64.sh```
- Answer the question "Do you wish the installer to prepend the Anaconda2 install location to PATH in your /home/.../.bashrc ?" with yes
- run ```bash Anaconda2-4.3.0-Linux-x86_64.sh```
- Answer the question "Do you wish the installer to prepend the Anaconda2 install location to PATH in your /home/.../.bashrc ?" with yes
OR do ```PATH=dir/to/python_anaconda:$PATH``` after installation process
- run ```conda install -c bioconda pysam```
- [R/Rscript](http://www.r-project.org/) (v3.3.0 or higher; follow instructions on url)
- install required packages step by step:
- install required packages step by step:
```bash
install.packages(c("ggplot2", "devtools", "gplots", "gridExtra", "jsonlite", "VennDiagram", "getopt"))
install.packages(c("ggplot2", "devtools", "gplots", "gridExtra", "jsonlite", "VennDiagram", "getopt", "tidyr", "UpSetR"))
source("https://bioconductor.org/biocLite.R")
biocLite(c("RBGL","graph"))
# to install the last required package, devtools has to be loaded to use the install from github function
biocLite(c("RBGL", "graph"))
# In order to plot a Chow-Ruskey plot in summary.R, install Vennerable from our modified fork
library(devtools)
install_github("jenzopr/Vennerable")
```
- [Git](https://git-scm.com/): run ```bash sudo apt-get install git```
- [Git](https://git-scm.com/): run ```bash sudo apt-get install git```

### Install UROPA locally

Expand Down
4 changes: 2 additions & 2 deletions uropa.py
Expand Up @@ -4,7 +4,7 @@
@authors: Maria Kondili, Jens Preussner and Annika Fust
@license: MIT
@version: 1.1.2
@version: 1.2.0
@maintainer: Mario Looso
@email: mario.looso@mpi-bn.mpg.de
"""
Expand Down Expand Up @@ -95,7 +95,7 @@
"--version",
help="prints the version and exits",
action="version",
version="%(prog)s 1.1.2")
version="%(prog)s 1.2.0")
args = parser.parse_args()

config = args.input
Expand Down

0 comments on commit 67c46b8

Please sign in to comment.