BeadWeaver 0.0.1__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.
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2026 The Python Packaging Authority
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ SOFTWARE.
@@ -0,0 +1,62 @@
1
+ Metadata-Version: 2.4
2
+ Name: BeadWeaver
3
+ Version: 0.0.1
4
+ Summary: Bead weaver is a package for manipulating .itp files
5
+ Author: Alejandro Daignino
6
+ Author-email: Jahmal Ennis <jahmal.ennis@gmail.com>
7
+ License-Expression: MIT
8
+ Project-URL: Issues, https://github.com/BranniganLab/BeadWeaver.git
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Requires-Dist: numpy
15
+ Requires-Dist: networkx
16
+ Requires-Dist: mdanalysis
17
+ Requires-Dist: matplotlib>=3.9
18
+ Requires-Dist: pyparsing
19
+ Dynamic: license-file
20
+
21
+ # BeadWeaver
22
+ Beadweaver is a software for manipulating itps of coarse-grained biological molecules.
23
+
24
+ ## Quick start
25
+ ### Create a virtual environment
26
+ `python -m venv beadweaver`
27
+
28
+ `source beadweaver/bin/activate`
29
+
30
+ ### Install beadweaver package
31
+ `cd BeadWeaver`
32
+
33
+ `pip install .` (This will not be editable)
34
+
35
+ or
36
+
37
+ `pip install -e .` (This will be editable and will make adjustments anytime the github is changed)
38
+
39
+ ### Activate Beadweaver GUI
40
+ `BWGUI`
41
+
42
+ ![Bead weaver GUI](./docs/_build/html/_images/BWGUI2.png)
43
+
44
+ ## GUI Button Functions
45
+
46
+ `Delete Bond`: Click on two beads, then click the `delete button` to remove the bond between molecules.
47
+
48
+ `Add Bond`: Click on two beads, then click the `add bond` button to remove the bond between molecules.
49
+
50
+ `Library`: The library is a drop-down menu of molecules that Beadweaver can access. You can select the molecule of interest, and that molecule will be loaded.
51
+
52
+ `Select`: First, select the beads from the current structure by clicking them. Then click the select button. A menu will appear; type in the name of the new structure. That new structure can be used in `New Molecule` and will be added to the `Library`.
53
+
54
+ `New Molecule`: Allows the user to insert a new molecule into the GUI using a string format. First, click `Delete Molecule`, then click `New Molecule`. Enter the name of the new molecule and click OK. A second command box will appear; enter the new molecule string.
55
+
56
+ **Format**: `bond#<molecule name>bond#-bond#<molecule name>bond#` or `bond#(bond molecule#(bond#<molecule name>bond#-bond#<letters>bond#`
57
+
58
+ **Example**: `0<KDO>1-2<KDO>0` or `0<KDO>1-2<KDO>1-1(1(3<KDO>0`
59
+
60
+ `Labels`: toggles on and off all labels
61
+
62
+ ![Bead weaver GUI](./docs/_build/html/_images/BWGUI1.png)
@@ -0,0 +1,42 @@
1
+ # BeadWeaver
2
+ Beadweaver is a software for manipulating itps of coarse-grained biological molecules.
3
+
4
+ ## Quick start
5
+ ### Create a virtual environment
6
+ `python -m venv beadweaver`
7
+
8
+ `source beadweaver/bin/activate`
9
+
10
+ ### Install beadweaver package
11
+ `cd BeadWeaver`
12
+
13
+ `pip install .` (This will not be editable)
14
+
15
+ or
16
+
17
+ `pip install -e .` (This will be editable and will make adjustments anytime the github is changed)
18
+
19
+ ### Activate Beadweaver GUI
20
+ `BWGUI`
21
+
22
+ ![Bead weaver GUI](./docs/_build/html/_images/BWGUI2.png)
23
+
24
+ ## GUI Button Functions
25
+
26
+ `Delete Bond`: Click on two beads, then click the `delete button` to remove the bond between molecules.
27
+
28
+ `Add Bond`: Click on two beads, then click the `add bond` button to remove the bond between molecules.
29
+
30
+ `Library`: The library is a drop-down menu of molecules that Beadweaver can access. You can select the molecule of interest, and that molecule will be loaded.
31
+
32
+ `Select`: First, select the beads from the current structure by clicking them. Then click the select button. A menu will appear; type in the name of the new structure. That new structure can be used in `New Molecule` and will be added to the `Library`.
33
+
34
+ `New Molecule`: Allows the user to insert a new molecule into the GUI using a string format. First, click `Delete Molecule`, then click `New Molecule`. Enter the name of the new molecule and click OK. A second command box will appear; enter the new molecule string.
35
+
36
+ **Format**: `bond#<molecule name>bond#-bond#<molecule name>bond#` or `bond#(bond molecule#(bond#<molecule name>bond#-bond#<letters>bond#`
37
+
38
+ **Example**: `0<KDO>1-2<KDO>0` or `0<KDO>1-2<KDO>1-1(1(3<KDO>0`
39
+
40
+ `Labels`: toggles on and off all labels
41
+
42
+ ![Bead weaver GUI](./docs/_build/html/_images/BWGUI1.png)
@@ -0,0 +1,10 @@
1
+ .. README.rst
2
+
3
+ **********
4
+ BeadWeaver
5
+ **********
6
+
7
+ .. image:: _build/html/_images/BWlogo.png
8
+ :width: 600px
9
+
10
+
@@ -0,0 +1,33 @@
1
+ [build-system]
2
+ requires = ["setuptools >= 77.0.3"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "BeadWeaver"
7
+ version = "0.0.1"
8
+ requires-python = ">=3"
9
+ dependencies=[
10
+ "numpy",
11
+ "networkx",
12
+ "mdanalysis",
13
+ "matplotlib>=3.9",
14
+ "pyparsing"
15
+ ]
16
+ authors = [
17
+ { name="Alejandro Daignino" },
18
+ { name="Jahmal Ennis", email="jahmal.ennis@gmail.com" },
19
+ ]
20
+ description = "Bead weaver is a package for manipulating .itp files"
21
+ readme = "README.md"
22
+ classifiers = [
23
+ "Programming Language :: Python :: 3",
24
+ "Operating System :: OS Independent",
25
+ ]
26
+ license = "MIT"
27
+ license-files = ["LICEN[CS]E*"]
28
+
29
+ [project.scripts]
30
+ BWGUI = "beadweaver.bwGUI:launch_GUI"
31
+
32
+ [project.urls]
33
+ Issues = "https://github.com/BranniganLab/BeadWeaver.git"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,62 @@
1
+ Metadata-Version: 2.4
2
+ Name: BeadWeaver
3
+ Version: 0.0.1
4
+ Summary: Bead weaver is a package for manipulating .itp files
5
+ Author: Alejandro Daignino
6
+ Author-email: Jahmal Ennis <jahmal.ennis@gmail.com>
7
+ License-Expression: MIT
8
+ Project-URL: Issues, https://github.com/BranniganLab/BeadWeaver.git
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Requires-Dist: numpy
15
+ Requires-Dist: networkx
16
+ Requires-Dist: mdanalysis
17
+ Requires-Dist: matplotlib>=3.9
18
+ Requires-Dist: pyparsing
19
+ Dynamic: license-file
20
+
21
+ # BeadWeaver
22
+ Beadweaver is a software for manipulating itps of coarse-grained biological molecules.
23
+
24
+ ## Quick start
25
+ ### Create a virtual environment
26
+ `python -m venv beadweaver`
27
+
28
+ `source beadweaver/bin/activate`
29
+
30
+ ### Install beadweaver package
31
+ `cd BeadWeaver`
32
+
33
+ `pip install .` (This will not be editable)
34
+
35
+ or
36
+
37
+ `pip install -e .` (This will be editable and will make adjustments anytime the github is changed)
38
+
39
+ ### Activate Beadweaver GUI
40
+ `BWGUI`
41
+
42
+ ![Bead weaver GUI](./docs/_build/html/_images/BWGUI2.png)
43
+
44
+ ## GUI Button Functions
45
+
46
+ `Delete Bond`: Click on two beads, then click the `delete button` to remove the bond between molecules.
47
+
48
+ `Add Bond`: Click on two beads, then click the `add bond` button to remove the bond between molecules.
49
+
50
+ `Library`: The library is a drop-down menu of molecules that Beadweaver can access. You can select the molecule of interest, and that molecule will be loaded.
51
+
52
+ `Select`: First, select the beads from the current structure by clicking them. Then click the select button. A menu will appear; type in the name of the new structure. That new structure can be used in `New Molecule` and will be added to the `Library`.
53
+
54
+ `New Molecule`: Allows the user to insert a new molecule into the GUI using a string format. First, click `Delete Molecule`, then click `New Molecule`. Enter the name of the new molecule and click OK. A second command box will appear; enter the new molecule string.
55
+
56
+ **Format**: `bond#<molecule name>bond#-bond#<molecule name>bond#` or `bond#(bond molecule#(bond#<molecule name>bond#-bond#<letters>bond#`
57
+
58
+ **Example**: `0<KDO>1-2<KDO>0` or `0<KDO>1-2<KDO>1-1(1(3<KDO>0`
59
+
60
+ `Labels`: toggles on and off all labels
61
+
62
+ ![Bead weaver GUI](./docs/_build/html/_images/BWGUI1.png)
@@ -0,0 +1,17 @@
1
+ LICENSE
2
+ README.md
3
+ README.rst
4
+ pyproject.toml
5
+ src/BeadWeaver.egg-info/PKG-INFO
6
+ src/BeadWeaver.egg-info/SOURCES.txt
7
+ src/BeadWeaver.egg-info/dependency_links.txt
8
+ src/BeadWeaver.egg-info/entry_points.txt
9
+ src/BeadWeaver.egg-info/requires.txt
10
+ src/BeadWeaver.egg-info/top_level.txt
11
+ src/beadweaver/BeadWeaver.py
12
+ src/beadweaver/__init__.py
13
+ src/beadweaver/bwGUI.py
14
+ src/beadweaver/bw_parser.py
15
+ src/beadweaver/itp_parser.py
16
+ src/beadweaver/itpreader.py
17
+ src/beadweaver/test.py
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ BWGUI = beadweaver.bwGUI:launch_GUI
@@ -0,0 +1,5 @@
1
+ numpy
2
+ networkx
3
+ mdanalysis
4
+ matplotlib>=3.9
5
+ pyparsing
@@ -0,0 +1 @@
1
+ beadweaver