Skip to content

Commit

Permalink
Merge pull request #44 from gregcaporaso/201-dev
Browse files Browse the repository at this point in the history
updates for 2.0.1 development cycle
  • Loading branch information
gregcaporaso committed May 9, 2016
2 parents c89049d + f1eefd7 commit a7cbe05
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
13 changes: 9 additions & 4 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# SourceTracker2 0.1.0
# sourcetracker2 changelog

* Initial Release
* Re-implements the Gibbs sampler from the original SourceTracker (see README.md)
* Supports multple jobs through `--jobs`
## 2.0.1-dev (changes since 2.0.1 go here)

## 2.0.1

* Initial alpha release.
* Re-implements the Gibbs sampler from [@danknights's SourceTracker.](https://github.com/danknights/sourcetracker).
* [click](http://click.pocoo.org/)-based command line interface through the ``sourcetracker2`` command.
* Supports parallel execution using the `--jobs` parameter.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ SourceTracker2 is Python 3 software. The easiest way to install it is using Anac
To install SourceTracker 2 using Anaconda, run the following commands:

```bash
conda create -n st2 python=3.5 numpy scipy h5py hdf5
conda create -n st2 python=3.5 numpy scipy h5py hdf5 matplotlib
source activate st2
pip install sourcetracker
```
Expand Down Expand Up @@ -151,7 +151,7 @@ strategy**
`sourcetracker2 gibbs -i otu_table.biom -m map.txt -o example4/ --burnin 100`

**Calculate the proportion of each source in each sink, using a sink
rarefaction depth of 2500**
rarefaction depth of 1500**
`sourcetracker2 gibbs -i otu_table.biom -m map.txt -o example5/ --sink_rarefaction_depth 2500`

**Calculate the proportion of each source in each sink, using ipyparallel to run in parallel with 5 jobs**
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from setuptools import find_packages, setup

__version__ = '2.0.1'
__version__ = '2.0.1-dev'

classes = """
Development Status :: 1 - Planning
Expand Down
2 changes: 1 addition & 1 deletion sourcetracker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
# The full license is in the file LICENSE, distributed with this software.
# ----------------------------------------------------------------------------

__version__ = '2.0.1'
__version__ = '2.0.1-dev'
_readme_url = "https://github.com/biota/sourcetracker2/blob/master/README.md"

0 comments on commit a7cbe05

Please sign in to comment.