bscampp 1.0.2b0__tar.gz → 1.0.3__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 (35) hide show
  1. {bscampp-1.0.2b0 → bscampp-1.0.3}/CHANGELOG.md +3 -0
  2. {bscampp-1.0.2b0/bscampp.egg-info → bscampp-1.0.3}/PKG-INFO +1 -1
  3. {bscampp-1.0.2b0 → bscampp-1.0.3}/bscampp/__init__.py +1 -1
  4. {bscampp-1.0.2b0 → bscampp-1.0.3/bscampp.egg-info}/PKG-INFO +1 -1
  5. {bscampp-1.0.2b0 → bscampp-1.0.3}/LICENSE +0 -0
  6. {bscampp-1.0.2b0 → bscampp-1.0.3}/MANIFEST.in +0 -0
  7. {bscampp-1.0.2b0 → bscampp-1.0.3}/README.md +0 -0
  8. {bscampp-1.0.2b0 → bscampp-1.0.3}/bscampp/configs.py +0 -0
  9. {bscampp-1.0.2b0 → bscampp-1.0.3}/bscampp/default.config +0 -0
  10. {bscampp-1.0.2b0 → bscampp-1.0.3}/bscampp/functions.py +0 -0
  11. {bscampp-1.0.2b0 → bscampp-1.0.3}/bscampp/init_configs.py +0 -0
  12. {bscampp-1.0.2b0 → bscampp-1.0.3}/bscampp/jobs.py +0 -0
  13. {bscampp-1.0.2b0 → bscampp-1.0.3}/bscampp/pipeline.py +0 -0
  14. {bscampp-1.0.2b0 → bscampp-1.0.3}/bscampp/tools/epa-ng +0 -0
  15. {bscampp-1.0.2b0 → bscampp-1.0.3}/bscampp/tools/hamming_distance/CMakeLists.txt +0 -0
  16. {bscampp-1.0.2b0 → bscampp-1.0.3}/bscampp/tools/hamming_distance/fragment_hamming +0 -0
  17. {bscampp-1.0.2b0 → bscampp-1.0.3}/bscampp/tools/hamming_distance/hamming +0 -0
  18. {bscampp-1.0.2b0 → bscampp-1.0.3}/bscampp/tools/hamming_distance/homology +0 -0
  19. {bscampp-1.0.2b0 → bscampp-1.0.3}/bscampp/tools/hamming_distance/src/fragment_hamming.cpp +0 -0
  20. {bscampp-1.0.2b0 → bscampp-1.0.3}/bscampp/tools/hamming_distance/src/fragment_tree_hamming.cpp +0 -0
  21. {bscampp-1.0.2b0 → bscampp-1.0.3}/bscampp/tools/hamming_distance/src/fragment_tree_hamming_new.cpp +0 -0
  22. {bscampp-1.0.2b0 → bscampp-1.0.3}/bscampp/tools/hamming_distance/src/homology.cpp +0 -0
  23. {bscampp-1.0.2b0 → bscampp-1.0.3}/bscampp/tools/hamming_distance/src/new_hamming.cpp +0 -0
  24. {bscampp-1.0.2b0 → bscampp-1.0.3}/bscampp/tools/pplacer +0 -0
  25. {bscampp-1.0.2b0 → bscampp-1.0.3}/bscampp/utils.py +0 -0
  26. {bscampp-1.0.2b0 → bscampp-1.0.3}/bscampp.egg-info/SOURCES.txt +0 -0
  27. {bscampp-1.0.2b0 → bscampp-1.0.3}/bscampp.egg-info/dependency_links.txt +0 -0
  28. {bscampp-1.0.2b0 → bscampp-1.0.3}/bscampp.egg-info/entry_points.txt +0 -0
  29. {bscampp-1.0.2b0 → bscampp-1.0.3}/bscampp.egg-info/requires.txt +0 -0
  30. {bscampp-1.0.2b0 → bscampp-1.0.3}/bscampp.egg-info/top_level.txt +0 -0
  31. {bscampp-1.0.2b0 → bscampp-1.0.3}/pyproject.toml +0 -0
  32. {bscampp-1.0.2b0 → bscampp-1.0.3}/requirements.txt +0 -0
  33. {bscampp-1.0.2b0 → bscampp-1.0.3}/run_bscampp.py +0 -0
  34. {bscampp-1.0.2b0 → bscampp-1.0.3}/setup.cfg +0 -0
  35. {bscampp-1.0.2b0 → bscampp-1.0.3}/tests/test_dry_run.py +0 -0
@@ -1,3 +1,6 @@
1
+ # BSCAMPP v1.0.3
2
+ 1. Version bump to avoid the entire "pre-release" tag with beta versions.
3
+
1
4
  # BSCAMPP v1.0.2b
2
5
  1. Removed redundant dependency in `bscampp/jobs.py`.
3
6
  2. Added logging to each placement subtask with the base method.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: bscampp
3
- Version: 1.0.2b0
3
+ Version: 1.0.3
4
4
  Summary: BSCAMPP - A Scalable Phylogenetic Placement Tool
5
5
  Author-email: Eleanor Wedell <ewedell2@illinois.edu>, Chengze Shen <chengze5@illinois.edu>
6
6
  License: MIT License
@@ -12,7 +12,7 @@ import logging, os
12
12
  # not really needed for BSCAMPP but safe to update here
13
13
  os.sys.setrecursionlimit(1000000)
14
14
 
15
- __version__ = "1.0.2b"
15
+ __version__ = "1.0.3"
16
16
  _INSTALL_PATH = __path__[0]
17
17
 
18
18
  # global variables to store all loggers
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: bscampp
3
- Version: 1.0.2b0
3
+ Version: 1.0.3
4
4
  Summary: BSCAMPP - A Scalable Phylogenetic Placement Tool
5
5
  Author-email: Eleanor Wedell <ewedell2@illinois.edu>, Chengze Shen <chengze5@illinois.edu>
6
6
  License: MIT License
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes