Skip to content

Commit

Permalink
Merge pull request #676 from gregcaporaso/215-rc1
Browse files Browse the repository at this point in the history
2.1.5 release candidate 1
  • Loading branch information
jairideout committed Oct 21, 2015
2 parents 5f3405f + 1c2e3db commit 3c0009c
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 41 deletions.
26 changes: 19 additions & 7 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,36 @@
BIOM-Format ChangeLog
=====================

biom 2.1.4-dev
--------------
biom 2.1.5
----------

New features and bug fixes, released on 21 October 2015.

Changes:

* Codebase is now Python 3 compatible.
* Codebase is now Python 2/3 compatible. It is currently tested with Python
versions 2.7, 3.4 and 3.5.
* `biom-serve` and the accompanying html interface has been removed.

New Features:

* `Table.head` has been added to retrieve the first few rows and or columns
from a table, see issue #639.
from a table. This can be accessed through the new ``biom head`` command.
See [issue #639](https://github.com/biocore/biom-format/issues/639).
* ``biom.parse.from_uc`` has been added to support creation of ``biom.Table``
objects from vsearch/uclust/usearch ``.uc`` files. This can be accessed
through the new ``biom from-uc`` command. See
[issue #648](https://github.com/biocore/biom-format/issues/648).
* Codebase now uses [click](http://click.pocoo.org) instead of
[pyqi](https://github.com/biocore/pyqi) to create interfaces
* `biom-serve` and the accompanying html interface has been removed
[pyqi](https://github.com/biocore/pyqi) for its command line interface.
See [issue #631](https://github.com/biocore/biom-format/issues/631).

Bug fixes:

* `Table.update_ids` strict check was too aggressive. See #633
* `Table.update_ids` strict check was too aggressive. See
[issue #633](https://github.com/biocore/biom-format/issues/633).
* `biom --version` now prints the software version (previously the individual
commands did this, but not the base command).

biom 2.1.4
----------
Expand Down
24 changes: 0 additions & 24 deletions INSTALL

This file was deleted.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,4 @@ Further details can be found at http://biom-format.org.
Getting help
------------

To get help with biom, you should use the [biom](http://stackoverflow.com/questions/tagged/biom) tag on StackOverflow (SO). Before posting a question, check out SO's guide on how to [ask a question](http://stackoverflow.com/questions/how-to-ask). The biom-format developers regularly monitor the `biom` SO tag.

To get help with biom, you should use the [biom](http://stackoverflow.com/questions/tagged/biom) tag on StackOverflow (SO), or post the the [QIIME Forum](http://forum.qiime.org). Before posting a question, check out SO's guide on how to [ask a question](http://stackoverflow.com/questions/how-to-ask). The biom-format developers regularly monitor the `biom` SO tag.
2 changes: 1 addition & 1 deletion biom/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
__maintainer__ = "Daniel McDonald"
__email__ = "daniel.mcdonald@colorado.edu"
__format_version__ = (2, 1)
__version__ = "2.1.4-dev"
__version__ = "2.1.5"


def generate_subsamples(table, n, axis='sample', by_id=False):
Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@
# built documents.
#
# The full version, including alpha/beta/rc tags.
version = "2.1.4-dev"
release = "2.1.4-dev"
version = "2.1.5"
release = "2.1.5"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 0 additions & 4 deletions doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,6 @@ To work with BIOM 2.0+ files::

pip install h5py

Equivalently, you can use the ``conda`` package manager available in `Anaconda <http://continuum.io/downloads>`_ or `miniconda <http://conda.pydata.org/miniconda.html>`_ to install ``biom-format`` and its dependencies without having to compile them::

conda install biom-format

To see a list of all ``biom`` commands, run::

biom
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
__credits__ = ["Greg Caporaso", "Daniel McDonald", "Jose Clemente",
"Jai Ram Rideout", "Jorge Cañardo Alastuey", "Michael Hall"]
__license__ = "BSD"
__version__ = "2.1.4-dev"
__version__ = "2.1.5"
__maintainer__ = "Daniel McDonald"
__email__ = "mcdonadt@colorado.edu"

Expand Down

0 comments on commit 3c0009c

Please sign in to comment.