Skip to content

Commit

Permalink
Fixing licenses
Browse files Browse the repository at this point in the history
  • Loading branch information
mortonjt committed Aug 23, 2016
1 parent e8b8086 commit e4c1846
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 7 deletions.
31 changes: 29 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,37 @@

Canonically pronouced *nice*

A compositional statistics and visualization toolbox
gneiss is a compositional statistics and visualization toolbox.

You can install Gneiss via pip
Note that gneiss is not compatible with python 2, and is compatible with Python 3.4 or later.
gneiss is currently in alpha. We are actively developing it, and __backward-incompatible interface changes can and will arise__.

# Installation

To install this package, it is recommended to setup a conda environment as follows

```
conda create -n gneiss_env python=3 pip gneiss
```

You can also install Gneiss via pip

```
pip install gneiss
```

To run through the tutorials, you'll need a few more packages, namely `seaborn`, `biom-format` and `h5py`.
These packages can be installed with conda as follows
```
source activate gneiss
conda install seaborn h5py
pip install biom-format
```

# Examples

IPython notebooks demonstrating some of the modules in gneiss can be found as follows

* [What are balances](https://github.com/biocore/gneiss/blob/master/ipynb/balance_trees.ipynb)
* [Linear regression on balances](https://github.com/biocore/gneiss/blob/master/ipynb/88soils.ipynb)

2 changes: 1 addition & 1 deletion gneiss/_formula.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ----------------------------------------------------------------------------
`# ----------------------------------------------------------------------------
# Copyright (c) 2016--, gneiss development team.
#
# Distributed under the terms of the GPLv3 License.
Expand Down
2 changes: 1 addition & 1 deletion gneiss/layouts.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ----------------------------------------------------------------------------
# Copyright (c) 2016--, gneiss development team.
#
# Distributed under the terms of the Modified BSD License.
# Distributed under the terms of the GPLv3 License.
#
# The full license is in the file COPYING.txt, distributed with this software.
# ----------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion gneiss/tests/test_balances.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ----------------------------------------------------------------------------
# Copyright (c) 2016--, gneiss development team.
#
# Distributed under the terms of the Modified BSD License.
# Distributed under the terms of the GPLv3 License.
#
# The full license is in the file COPYING.txt, distributed with this software.
# ----------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# ----------------------------------------------------------------------------
# Copyright (c) 2016--, gneiss development team.
#
# Distributed under the terms of the Modified BSD License.
# Distributed under the terms of the GPLv3 License.
#
# The full license is in the file COPYING.txt, distributed with this software.
# ----------------------------------------------------------------------------
Expand Down Expand Up @@ -36,7 +36,7 @@ def finalize_options(self):

classes = """
Development Status :: 3 - Alpha
License :: OSI Approved :: BSD License
License :: OSI Approved :: GPLv3 License
Topic :: Software Development :: Libraries
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Bio-Informatics
Expand Down

0 comments on commit e4c1846

Please sign in to comment.