LineageTree 1.4.4__tar.gz → 1.5.0__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.
- {LineageTree-1.4.4/src/LineageTree.egg-info → lineagetree-1.5.0}/PKG-INFO +3 -8
- {LineageTree-1.4.4 → lineagetree-1.5.0}/README.md +0 -7
- {LineageTree-1.4.4 → lineagetree-1.5.0}/pyproject.toml +1 -1
- {LineageTree-1.4.4 → lineagetree-1.5.0}/setup.cfg +2 -0
- lineagetree-1.5.0/src/LineageTree/__init__.py +5 -0
- {LineageTree-1.4.4 → lineagetree-1.5.0}/src/LineageTree/lineageTree.py +1340 -260
- lineagetree-1.5.0/src/LineageTree/lineageTreeManager.py +170 -0
- lineagetree-1.5.0/src/LineageTree/tree_styles.py +305 -0
- lineagetree-1.5.0/src/LineageTree/utils.py +211 -0
- {LineageTree-1.4.4 → lineagetree-1.5.0/src/LineageTree.egg-info}/PKG-INFO +3 -8
- {LineageTree-1.4.4 → lineagetree-1.5.0}/src/LineageTree.egg-info/SOURCES.txt +5 -1
- {LineageTree-1.4.4 → lineagetree-1.5.0}/src/LineageTree.egg-info/requires.txt +2 -0
- lineagetree-1.5.0/test/test_uted.py +233 -0
- LineageTree-1.4.4/src/LineageTree/__init__.py +0 -4
- {LineageTree-1.4.4 → lineagetree-1.5.0}/LICENSE +0 -0
- {LineageTree-1.4.4 → lineagetree-1.5.0}/src/LineageTree.egg-info/dependency_links.txt +0 -0
- {LineageTree-1.4.4 → lineagetree-1.5.0}/src/LineageTree.egg-info/top_level.txt +0 -0
- {LineageTree-1.4.4 → lineagetree-1.5.0}/test/test_lineageTree.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: LineageTree
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.5.0
|
4
4
|
Summary: Lineage tree structure
|
5
5
|
Home-page: https://github.com/leoguignard/LineageTree
|
6
6
|
Author: Léo Guignard
|
@@ -26,6 +26,8 @@ Description-Content-Type: text/markdown
|
|
26
26
|
License-File: LICENSE
|
27
27
|
Requires-Dist: scipy>=1.9
|
28
28
|
Requires-Dist: numpy>=1.23
|
29
|
+
Requires-Dist: mastodon-reader
|
30
|
+
Requires-Dist: matplotlib
|
29
31
|
Provides-Extra: svg
|
30
32
|
Requires-Dist: svgwrite; extra == "svg"
|
31
33
|
Requires-Dist: matplotlib; extra == "svg"
|
@@ -59,13 +61,6 @@ With LineageTree you can read from:
|
|
59
61
|
- ASTEC algorithm outputs described in [Guignard, Fiuza et al. 2020](https://doi.org/10.1126/science.aar5663)
|
60
62
|
- and few others
|
61
63
|
|
62
|
-
## Description of the repository
|
63
|
-
|
64
|
-
- src: folder containing the package
|
65
|
-
- setup.py: Installation script
|
66
|
-
- README.md: This file
|
67
|
-
- LICENCE: The licence describing file
|
68
|
-
|
69
64
|
## Basic usage
|
70
65
|
|
71
66
|
Once installed the library can be called the following way (as an example):
|
@@ -10,13 +10,6 @@ With LineageTree you can read from:
|
|
10
10
|
- ASTEC algorithm outputs described in [Guignard, Fiuza et al. 2020](https://doi.org/10.1126/science.aar5663)
|
11
11
|
- and few others
|
12
12
|
|
13
|
-
## Description of the repository
|
14
|
-
|
15
|
-
- src: folder containing the package
|
16
|
-
- setup.py: Installation script
|
17
|
-
- README.md: This file
|
18
|
-
- LICENCE: The licence describing file
|
19
|
-
|
20
13
|
## Basic usage
|
21
14
|
|
22
15
|
Once installed the library can be called the following way (as an example):
|