BoolDog 0.1.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.
Files changed (46) hide show
  1. booldog-0.1.0/BoolDog.egg-info/PKG-INFO +71 -0
  2. booldog-0.1.0/BoolDog.egg-info/SOURCES.txt +44 -0
  3. booldog-0.1.0/BoolDog.egg-info/dependency_links.txt +1 -0
  4. booldog-0.1.0/BoolDog.egg-info/requires.txt +23 -0
  5. booldog-0.1.0/BoolDog.egg-info/top_level.txt +1 -0
  6. booldog-0.1.0/LICENSE +674 -0
  7. booldog-0.1.0/PKG-INFO +71 -0
  8. booldog-0.1.0/README.md +34 -0
  9. booldog-0.1.0/booldog/__init__.py +20 -0
  10. booldog-0.1.0/booldog/boolean/__init__.py +2 -0
  11. booldog-0.1.0/booldog/boolean/boolean.py +323 -0
  12. booldog-0.1.0/booldog/boolean/modifications.py +268 -0
  13. booldog-0.1.0/booldog/classes.py +77 -0
  14. booldog-0.1.0/booldog/continuous/__init__.py +1 -0
  15. booldog-0.1.0/booldog/continuous/ode_factory.py +523 -0
  16. booldog-0.1.0/booldog/continuous/semi_quantitative.py +240 -0
  17. booldog-0.1.0/booldog/io/__init__.py +169 -0
  18. booldog-0.1.0/booldog/io/biomodels.py +153 -0
  19. booldog-0.1.0/booldog/io/bnet.py +182 -0
  20. booldog-0.1.0/booldog/io/circuit.py +238 -0
  21. booldog-0.1.0/booldog/io/cytoscape.py +111 -0
  22. booldog-0.1.0/booldog/io/igraph.py +53 -0
  23. booldog-0.1.0/booldog/io/interaction_logic.py +114 -0
  24. booldog-0.1.0/booldog/io/interaction_networks.py +501 -0
  25. booldog-0.1.0/booldog/io/networkx.py +70 -0
  26. booldog-0.1.0/booldog/io/primes.py +76 -0
  27. booldog-0.1.0/booldog/io/sbml.py +617 -0
  28. booldog-0.1.0/booldog/io/tabularqual.py +79 -0
  29. booldog-0.1.0/booldog/network.py +136 -0
  30. booldog-0.1.0/booldog/resources/__init__.py +18 -0
  31. booldog-0.1.0/booldog/resources/cytoscape_style.xml +197 -0
  32. booldog-0.1.0/booldog/resources/stylesheet.mplstyle +45 -0
  33. booldog-0.1.0/booldog/simulation_result/__init__.py +2 -0
  34. booldog-0.1.0/booldog/simulation_result/boolean_result.py +525 -0
  35. booldog-0.1.0/booldog/simulation_result/continuous_result.py +270 -0
  36. booldog-0.1.0/booldog/utils/__init__.py +1 -0
  37. booldog-0.1.0/booldog/utils/boolean_normal_forms.py +203 -0
  38. booldog-0.1.0/booldog/utils/cytoscape_utils.py +21 -0
  39. booldog-0.1.0/booldog/utils/decorators.py +80 -0
  40. booldog-0.1.0/booldog/utils/logger.py +26 -0
  41. booldog-0.1.0/booldog/utils/misc.py +117 -0
  42. booldog-0.1.0/pyproject.toml +49 -0
  43. booldog-0.1.0/setup.cfg +4 -0
  44. booldog-0.1.0/tests/test_biomodels.py +28 -0
  45. booldog-0.1.0/tests/test_io.py +91 -0
  46. booldog-0.1.0/tests/test_utils.py +74 -0
@@ -0,0 +1,71 @@
1
+ Metadata-Version: 2.4
2
+ Name: BoolDog
3
+ Version: 0.1.0
4
+ Summary: A Python package for analyses of Boolean and semi-quantitative Boolean networks.
5
+ Author-email: Carissa Bleker <carissa.bleker@nib.si>
6
+ License-Expression: GPL-3.0
7
+ Project-URL: Homepage, https://github.com/NIB-SI/BoolDog
8
+ Project-URL: Repository, https://github.com/NIB-SI/BoolDog
9
+ Project-URL: Issues, https://github.com/NIB-SI/BoolDog/issues
10
+ Project-URL: Documentation, https://nib-si.github.io/BoolDog/
11
+ Keywords: boolean networks,systems biology,computational biology,network analysis
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Operating System :: OS Independent
14
+ Requires-Python: >=3.12
15
+ Description-Content-Type: text/markdown
16
+ License-File: LICENSE
17
+ Requires-Dist: pyboolnet==3.0.16
18
+ Requires-Dist: matplotlib>=3.4
19
+ Requires-Dist: numpy>=1.20
20
+ Requires-Dist: scipy>=1.6
21
+ Requires-Dist: xmltodict>=0.13.0
22
+ Provides-Extra: sbml
23
+ Requires-Dist: python-libsbml>=5.19; extra == "sbml"
24
+ Requires-Dist: tabularqual; extra == "sbml"
25
+ Provides-Extra: networks
26
+ Requires-Dist: networkx; extra == "networks"
27
+ Requires-Dist: igraph==0.11.9; extra == "networks"
28
+ Provides-Extra: graphviz
29
+ Requires-Dist: pygraphviz; extra == "graphviz"
30
+ Provides-Extra: all
31
+ Requires-Dist: python-libsbml>=5.19; extra == "all"
32
+ Requires-Dist: tabularqual; extra == "all"
33
+ Requires-Dist: networkx; extra == "all"
34
+ Requires-Dist: igraph==0.11.9; extra == "all"
35
+ Requires-Dist: pygraphviz; extra == "all"
36
+ Dynamic: license-file
37
+
38
+ # BoolDog <img src="docs/figures/logo.png" raw=true alt="BoolDoG icon" width="240" align="right" >
39
+
40
+ A Python package for analyses of Boolean and semi-quantitative Boolean networks.
41
+
42
+ ## Documentation
43
+
44
+ For installation, usage, and examples, see the documentation at
45
+ [nib-si.github.io/BoolDoG](https://nib-si.github.io/BoolDoG)
46
+
47
+ ## Citation
48
+
49
+ TODO
50
+
51
+ ## Development version
52
+
53
+ Development version of BoolDog can be installed from GitHub.
54
+
55
+ To install:
56
+
57
+ ```bash
58
+ git clone https://github.com/NIB-SI/BoolDog.git
59
+ cd BoolDoG
60
+ pip install .
61
+ ```
62
+
63
+ To remove:
64
+
65
+ ```bash
66
+ pip uninstall booldog
67
+ ```
68
+
69
+ ---
70
+
71
+
@@ -0,0 +1,44 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ BoolDog.egg-info/PKG-INFO
5
+ BoolDog.egg-info/SOURCES.txt
6
+ BoolDog.egg-info/dependency_links.txt
7
+ BoolDog.egg-info/requires.txt
8
+ BoolDog.egg-info/top_level.txt
9
+ booldog/__init__.py
10
+ booldog/classes.py
11
+ booldog/network.py
12
+ booldog/boolean/__init__.py
13
+ booldog/boolean/boolean.py
14
+ booldog/boolean/modifications.py
15
+ booldog/continuous/__init__.py
16
+ booldog/continuous/ode_factory.py
17
+ booldog/continuous/semi_quantitative.py
18
+ booldog/io/__init__.py
19
+ booldog/io/biomodels.py
20
+ booldog/io/bnet.py
21
+ booldog/io/circuit.py
22
+ booldog/io/cytoscape.py
23
+ booldog/io/igraph.py
24
+ booldog/io/interaction_logic.py
25
+ booldog/io/interaction_networks.py
26
+ booldog/io/networkx.py
27
+ booldog/io/primes.py
28
+ booldog/io/sbml.py
29
+ booldog/io/tabularqual.py
30
+ booldog/resources/__init__.py
31
+ booldog/resources/cytoscape_style.xml
32
+ booldog/resources/stylesheet.mplstyle
33
+ booldog/simulation_result/__init__.py
34
+ booldog/simulation_result/boolean_result.py
35
+ booldog/simulation_result/continuous_result.py
36
+ booldog/utils/__init__.py
37
+ booldog/utils/boolean_normal_forms.py
38
+ booldog/utils/cytoscape_utils.py
39
+ booldog/utils/decorators.py
40
+ booldog/utils/logger.py
41
+ booldog/utils/misc.py
42
+ tests/test_biomodels.py
43
+ tests/test_io.py
44
+ tests/test_utils.py
@@ -0,0 +1,23 @@
1
+ pyboolnet==3.0.16
2
+ matplotlib>=3.4
3
+ numpy>=1.20
4
+ scipy>=1.6
5
+ xmltodict>=0.13.0
6
+
7
+ [all]
8
+ python-libsbml>=5.19
9
+ tabularqual
10
+ networkx
11
+ igraph==0.11.9
12
+ pygraphviz
13
+
14
+ [graphviz]
15
+ pygraphviz
16
+
17
+ [networks]
18
+ networkx
19
+ igraph==0.11.9
20
+
21
+ [sbml]
22
+ python-libsbml>=5.19
23
+ tabularqual
@@ -0,0 +1 @@
1
+ booldog