Skip to content

Commit

Permalink
fix join_metadata() axis default and version bump (#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
amnona committed Jul 24, 2022
1 parent 8325d9c commit b58cda9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
@@ -1,8 +1,9 @@
# calour changelog




## Version 2022.7.1
Bug Fixes:
* Fix join_metadata() to use axis='s' by default

## Version 2020.8.6

Expand Down
2 changes: 1 addition & 1 deletion calour/__init__.py
Expand Up @@ -18,7 +18,7 @@


__credits__ = "https://github.com/biocore/calour/graphs/contributors"
__version__ = "2019.5.1"
__version__ = "2022.7.1"

__all__ = ['read', 'read_amplicon', 'read_ms', 'read_qiime2',
'Experiment', 'AmpliconExperiment', 'MS1Experiment',
Expand Down
2 changes: 1 addition & 1 deletion calour/manipulation.py
Expand Up @@ -75,7 +75,7 @@ def chain(exp: Experiment, steps=[], inplace=False, **kwargs) -> Experiment:


def join_metadata_fields(exp: Experiment, field1, field2, new_field=None,
axis='s', inplace=True, **kwargs) -> Experiment:
axis=0, inplace=True, **kwargs) -> Experiment:
'''Join 2 fields in sample or feature metadata into 1.
Parameters
Expand Down

0 comments on commit b58cda9

Please sign in to comment.