diff --git a/README.md b/README.md index bff42c1..5a07e4c 100644 --- a/README.md +++ b/README.md @@ -124,7 +124,7 @@ In redbiom, the word "context" refers to a way in which the sample data were pro To support the one to many relationship between a sample's metadata and its data, within a context, a sample's IDs are prefixed by a "tag" which can be specified at load. Internally, within a context, these IDs are of the form `_`. The use of the `_` character ensures that they are not valid QIIME sample IDs, and is necessary so we can appropriately differentiate these IDs. Methods which write data will coerce these invalid QIIME IDs into valid IDs of the form `.`. **IMPORTANT**: if you run your own resource, it is important to specify `--tag` on load of sample data to differentiate BIOM tables in which the sample IDs between the tables may not be mutually exclusive. -Commands which write data will notify the user if there were ambiguities. An ambiguitiy means that there was a sample ID which mapped to multiple redbiom IDs within the output. The IDs written are unique because of the reasons noted above, +Commands which write data will notify the user if there were ambiguities. An ambiguitiy means that there was a sample ID which mapped to multiple redbiom IDs within the output. The IDs written are unique because of the reasons noted above. # Command structure diff --git a/redbiom/__init__.py b/redbiom/__init__.py index 6d2684b..e56e3f8 100644 --- a/redbiom/__init__.py +++ b/redbiom/__init__.py @@ -13,7 +13,7 @@ # adapted from biom-format -__version__ = '0.3.4' +__version__ = '0.3.5' # db version follows macro/minor/micro expectations where a micro change should # be backwards compatible, a minor change introduces some backwards diff --git a/setup.py b/setup.py index 7171310..b2c0481 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( name='redbiom', - version='0.3.4', + version='0.3.5', license='BSD-3-Clause', author='Daniel McDonald', author_email='wasade@gmail.com',