LineageTree 1.6.1__tar.gz → 1.8.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.6.1/src/LineageTree.egg-info → lineagetree-1.8.0}/PKG-INFO +3 -2
- {lineagetree-1.6.1 → lineagetree-1.8.0}/README.md +1 -0
- {lineagetree-1.6.1 → lineagetree-1.8.0}/pyproject.toml +5 -1
- {lineagetree-1.6.1 → lineagetree-1.8.0}/src/LineageTree/__init__.py +1 -1
- {lineagetree-1.6.1 → lineagetree-1.8.0}/src/LineageTree/lineageTree.py +274 -273
- {lineagetree-1.6.1 → lineagetree-1.8.0}/src/LineageTree/lineageTreeManager.py +50 -23
- {lineagetree-1.6.1 → lineagetree-1.8.0}/src/LineageTree/loaders.py +284 -42
- {lineagetree-1.6.1 → lineagetree-1.8.0}/src/LineageTree/tree_styles.py +99 -66
- {lineagetree-1.6.1 → lineagetree-1.8.0}/src/LineageTree/utils.py +7 -11
- {lineagetree-1.6.1 → lineagetree-1.8.0/src/LineageTree.egg-info}/PKG-INFO +3 -2
- lineagetree-1.8.0/test/test_lineageTree.py +298 -0
- lineagetree-1.6.1/test/test_lineageTree.py +0 -21
- {lineagetree-1.6.1 → lineagetree-1.8.0}/LICENSE +0 -0
- {lineagetree-1.6.1 → lineagetree-1.8.0}/setup.cfg +0 -0
- {lineagetree-1.6.1 → lineagetree-1.8.0}/src/LineageTree.egg-info/SOURCES.txt +0 -0
- {lineagetree-1.6.1 → lineagetree-1.8.0}/src/LineageTree.egg-info/dependency_links.txt +0 -0
- {lineagetree-1.6.1 → lineagetree-1.8.0}/src/LineageTree.egg-info/requires.txt +0 -0
- {lineagetree-1.6.1 → lineagetree-1.8.0}/src/LineageTree.egg-info/top_level.txt +0 -0
- {lineagetree-1.6.1 → lineagetree-1.8.0}/test/test_uted.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.2
|
2
2
|
Name: LineageTree
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.8.0
|
4
4
|
Summary: Lineage tree structure
|
5
5
|
Home-page: https://github.com/leoguignard/LineageTree
|
6
6
|
Author: Léo Guignard
|
@@ -59,6 +59,7 @@ With LineageTree you can read from:
|
|
59
59
|
- MaMuT files described in [Wolff et al. 2018](https://doi.org/10.7554/eLife.34410)
|
60
60
|
- SVF algorithm outputs described in [McDole, Guignard et al. 2018](https://doi.org/10.1016/j.cell.2018.09.031)
|
61
61
|
- ASTEC algorithm outputs described in [Guignard, Fiuza et al. 2020](https://doi.org/10.1126/science.aar5663)
|
62
|
+
- Data from the [Digital development Database](http://digital-development.org/index.html) described in [Du et al. 2014](https://www.cell.com/fulltext/S0092-8674(13)01542-0) and [Du et al. 2015](https://www.sciencedirect.com/science/article/pii/S1534580715004876?via%3Dihub)
|
62
63
|
- and few others
|
63
64
|
|
64
65
|
## Basic usage
|
@@ -8,6 +8,7 @@ With LineageTree you can read from:
|
|
8
8
|
- MaMuT files described in [Wolff et al. 2018](https://doi.org/10.7554/eLife.34410)
|
9
9
|
- SVF algorithm outputs described in [McDole, Guignard et al. 2018](https://doi.org/10.1016/j.cell.2018.09.031)
|
10
10
|
- ASTEC algorithm outputs described in [Guignard, Fiuza et al. 2020](https://doi.org/10.1126/science.aar5663)
|
11
|
+
- Data from the [Digital development Database](http://digital-development.org/index.html) described in [Du et al. 2014](https://www.cell.com/fulltext/S0092-8674(13)01542-0) and [Du et al. 2015](https://www.sciencedirect.com/science/article/pii/S1534580715004876?via%3Dihub)
|
11
12
|
- and few others
|
12
13
|
|
13
14
|
## Basic usage
|
@@ -10,7 +10,7 @@ profile = "black"
|
|
10
10
|
line_length = 79
|
11
11
|
|
12
12
|
[tool.bumpver]
|
13
|
-
current_version = "1.
|
13
|
+
current_version = "1.8.0"
|
14
14
|
version_pattern = "MAJOR.MINOR.PATCH[-TAG]"
|
15
15
|
commit_message = "bump version {old_version} -> {new_version}"
|
16
16
|
commit = true
|
@@ -40,11 +40,15 @@ select = [
|
|
40
40
|
"G", # flake8-logging-format
|
41
41
|
"PIE", # flake8-pie
|
42
42
|
"SIM", # flake8-simplify
|
43
|
+
"I", # imports
|
44
|
+
"T201", # print statements
|
45
|
+
"ERA001", #commented out code
|
43
46
|
]
|
44
47
|
ignore = [
|
45
48
|
"E501", # line too long. let black handle this
|
46
49
|
"UP006", "UP007", # type annotation. As using magicgui require runtime type annotation then we disable this.
|
47
50
|
"SIM117", # flake8-simplify - some of merged with statements are not looking great with black, reanble after drop python 3.9
|
51
|
+
"SIM300", # yoda conditions
|
48
52
|
]
|
49
53
|
|
50
54
|
exclude = [
|