Skip to content

Commit

Permalink
Merge c9e582b into f13954d
Browse files Browse the repository at this point in the history
  • Loading branch information
mortonjt committed Aug 19, 2016
2 parents f13954d + c9e582b commit 1e0c108
Show file tree
Hide file tree
Showing 8 changed files with 1,233 additions and 2 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# gneiss changelog
## Version 0.1.0 (changes since 0.1.0 go here)


## Version 0.0.2 (changes since 0.0.2 go here)

### Features
* * Adding in a niche sorting algorithm `gneiss.sort.niche_sort` that can generate a band table given a gradient [#16](https://github.com/biocore/gneiss/pull/16)
* Added statsmodels inference [#22](https://github.com/biocore/gneiss/pull/22)
* Added support for ordinary least squares regression [#33](https://github.com/biocore/gneiss/pull/33)
* Added support for linear mixed effects models [#38](https://github.com/biocore/gneiss/pull/38)
* Added RegressionResults object to summarize statistics from statistical analyses
* Adding in a niche sorting algorithm `gneiss.sort.niche_sort` that can generate a band table given a gradient [#16](https://github.com/biocore/gneiss/pull/16)
* Adding in utility functions for handing feature tables, metadata, and trees. [#12](https://github.com/biocore/gneiss/pull/12)
* Adding GPL license.

Expand Down
1 change: 1 addition & 0 deletions ci/pip_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
coveralls
ete3
statsmodels
3 changes: 3 additions & 0 deletions gneiss/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,8 @@

from __future__ import absolute_import, division, print_function

from gneiss._formula import mixedlm, ols

__all__ = ['ols', 'mixedlm']

__version__ = "0.0.2"

0 comments on commit 1e0c108

Please sign in to comment.