Skip to content

Commit

Permalink
Bumped version and added separate plotting install.
Browse files Browse the repository at this point in the history
  • Loading branch information
marcus1487 committed Apr 10, 2017
1 parent db4ae59 commit 1ef24ab
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,16 @@ This package provides tools for the analysis of raw nanopore sequencing data, in
Full documentation available at [Read the Docs](https://nanoraw.readthedocs.io)

## Installation
Install nanoraw via pip
Install nanoraw without plotting dependencies (base genome_resquiggle algorithm and text outputs: wig and fasta)
```
pip install nanoraw
```

Install nanoraw with plotting dependecies (requires separate installation of R packages ggplot2 and cowplot)
```
pip install nanoraw[plot]
```

Install bleeding edge via github
```
pip install git+https://github.com/marcus1487/nanoraw.git
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.4.1'
version = u'0.4.2'
# The full version, including alpha/beta/rc tags.
release = u'0.4.1'
release = u'0.4.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion nanoraw/nanoraw_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from itertools import izip
from collections import defaultdict, namedtuple

NANORAW_VERSION = '0.4.1'
NANORAW_VERSION = '0.4.2'

readData = namedtuple('readData', (
'start', 'end', 'segs', 'read_start_rel_to_raw',
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ def readme():

setup(
name = "nanoraw",
version = "0.4.1",
version = "0.4.2",
packages = ["nanoraw"],
install_requires = ['h5py', 'numpy', 'scipy'],
extras_require={'plot':['rpy2']},

author = "Marcus Stoiber",
author_email = "[email protected]",
Expand Down

0 comments on commit 1ef24ab

Please sign in to comment.