Skip to content
Commits on Source (3)
q2-taxa (2019.7.0-1) UNRELEASED; urgency=medium
q2-taxa (2019.10.0-1) UNRELEASED; urgency=medium
* New upstream version
* debhelper-compat 12
* Respect DEB_BUILD_OPTIONS in override_dh_auto_test target
* Specify the required version of qiime2 and plugins
-- Liubov Chuprikova <chuprikovalv@gmail.com> Sat, 07 Sep 2019 14:39:31 +0200
-- Liubov Chuprikova <chuprikovalv@gmail.com> Mon, 30 Dec 2019 00:18:52 +0300
q2-taxa (2019.4.0-1) unstable; urgency=medium
......
......@@ -23,9 +23,9 @@ def get_keywords():
# setup.py/versioneer.py will grep for the variable names, so they must
# each be defined on a line of their own. _version.py will just call
# get_keywords().
git_refnames = " (tag: 2019.7.0)"
git_full = "bc018fe8540f9f0fb4f4cf6729d840a53f5d8c31"
git_date = "2019-07-30 18:15:55 +0000"
git_refnames = " (tag: 2019.10.0)"
git_full = "32a88e36b612e5a6b9fa1239076096e91b7ffae1"
git_date = "2019-11-01 01:04:24 +0000"
keywords = {"refnames": git_refnames, "full": git_full, "date": git_date}
return keywords
......
......@@ -26,7 +26,7 @@ def barplot(output_dir: str, table: pd.DataFrame, taxonomy: pd.Series,
metadata: Metadata) -> None:
ids_not_in_metadata = set(table.index) - set(metadata.ids)
if ids_not_in_metadata:
raise ValueError('Feature IDs found in the table are missing in the '
raise ValueError('Sample IDs found in the table are missing in the '
f'metadata: {ids_not_in_metadata!r}.')
metadata = metadata.to_dataframe()
......