taxoniumtools 2.0.115__tar.gz → 2.0.116__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. {taxoniumtools-2.0.115 → taxoniumtools-2.0.116}/PKG-INFO +1 -1
  2. {taxoniumtools-2.0.115 → taxoniumtools-2.0.116}/src/taxoniumtools/_version.py +2 -2
  3. {taxoniumtools-2.0.115 → taxoniumtools-2.0.116}/src/taxoniumtools/utils.py +1 -0
  4. {taxoniumtools-2.0.115 → taxoniumtools-2.0.116}/src/taxoniumtools.egg-info/PKG-INFO +1 -1
  5. {taxoniumtools-2.0.115 → taxoniumtools-2.0.116}/README.md +0 -0
  6. {taxoniumtools-2.0.115 → taxoniumtools-2.0.116}/pyproject.toml +0 -0
  7. {taxoniumtools-2.0.115 → taxoniumtools-2.0.116}/setup.cfg +0 -0
  8. {taxoniumtools-2.0.115 → taxoniumtools-2.0.116}/src/taxoniumtools/__init__.py +0 -0
  9. {taxoniumtools-2.0.115 → taxoniumtools-2.0.116}/src/taxoniumtools/__main__.py +0 -0
  10. {taxoniumtools-2.0.115 → taxoniumtools-2.0.116}/src/taxoniumtools/newick_to_taxonium.py +0 -0
  11. {taxoniumtools-2.0.115 → taxoniumtools-2.0.116}/src/taxoniumtools/parsimony_pb2.py +0 -0
  12. {taxoniumtools-2.0.115 → taxoniumtools-2.0.116}/src/taxoniumtools/usher_to_taxonium.py +0 -0
  13. {taxoniumtools-2.0.115 → taxoniumtools-2.0.116}/src/taxoniumtools/ushertools.py +0 -0
  14. {taxoniumtools-2.0.115 → taxoniumtools-2.0.116}/src/taxoniumtools/view_taxonium.py +0 -0
  15. {taxoniumtools-2.0.115 → taxoniumtools-2.0.116}/src/taxoniumtools.egg-info/SOURCES.txt +0 -0
  16. {taxoniumtools-2.0.115 → taxoniumtools-2.0.116}/src/taxoniumtools.egg-info/dependency_links.txt +0 -0
  17. {taxoniumtools-2.0.115 → taxoniumtools-2.0.116}/src/taxoniumtools.egg-info/entry_points.txt +0 -0
  18. {taxoniumtools-2.0.115 → taxoniumtools-2.0.116}/src/taxoniumtools.egg-info/requires.txt +0 -0
  19. {taxoniumtools-2.0.115 → taxoniumtools-2.0.116}/src/taxoniumtools.egg-info/top_level.txt +0 -0
  20. {taxoniumtools-2.0.115 → taxoniumtools-2.0.116}/test_data/hu1.gb +0 -0
  21. {taxoniumtools-2.0.115 → taxoniumtools-2.0.116}/test_data/mpox.pb +0 -0
  22. {taxoniumtools-2.0.115 → taxoniumtools-2.0.116}/test_data/mpox_ref.fasta +0 -0
  23. {taxoniumtools-2.0.115 → taxoniumtools-2.0.116}/test_data/test.nwk +0 -0
  24. {taxoniumtools-2.0.115 → taxoniumtools-2.0.116}/test_data/test_config.json +0 -0
  25. {taxoniumtools-2.0.115 → taxoniumtools-2.0.116}/test_data/tfci.meta.tsv.gz +0 -0
  26. {taxoniumtools-2.0.115 → taxoniumtools-2.0.116}/test_data/tfci.pb +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: taxoniumtools
3
- Version: 2.0.115
3
+ Version: 2.0.116
4
4
  Summary: Generate files for taxonium
5
5
  Home-page: https://github.com/theosanderson/taxonium
6
6
  Author: Theo Sanderson
@@ -12,5 +12,5 @@ __version__: str
12
12
  __version_tuple__: VERSION_TUPLE
13
13
  version_tuple: VERSION_TUPLE
14
14
 
15
- __version__ = version = '2.0.115'
16
- __version_tuple__ = version_tuple = (2, 0, 115)
15
+ __version__ = version = '2.0.116'
16
+ __version_tuple__ = version_tuple = (2, 0, 116)
@@ -25,6 +25,7 @@ def read_metadata(metadata_file, columns, key_column):
25
25
  usecols=cols_of_interest)
26
26
  # Enable again
27
27
  warnings.filterwarnings("default")
28
+ metadata[key_column] = metadata[key_column].astype(str)
28
29
  metadata.set_index(key_column, inplace=True)
29
30
  # convert metadata to dict of rows
30
31
  if not metadata.index.is_unique:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: taxoniumtools
3
- Version: 2.0.115
3
+ Version: 2.0.116
4
4
  Summary: Generate files for taxonium
5
5
  Home-page: https://github.com/theosanderson/taxonium
6
6
  Author: Theo Sanderson