sawnergy 1.0.0__tar.gz → 1.0.2__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.
- {sawnergy-1.0.0/sawnergy.egg-info → sawnergy-1.0.2}/PKG-INFO +7 -20
- {sawnergy-1.0.0 → sawnergy-1.0.2}/README.md +6 -19
- {sawnergy-1.0.0 → sawnergy-1.0.2/sawnergy.egg-info}/PKG-INFO +7 -20
- {sawnergy-1.0.0 → sawnergy-1.0.2}/LICENSE +0 -0
- {sawnergy-1.0.0 → sawnergy-1.0.2}/NOTICE +0 -0
- {sawnergy-1.0.0 → sawnergy-1.0.2}/sawnergy/__init__.py +0 -0
- {sawnergy-1.0.0 → sawnergy-1.0.2}/sawnergy/embedding/SGNS_pml.py +0 -0
- {sawnergy-1.0.0 → sawnergy-1.0.2}/sawnergy/embedding/SGNS_torch.py +0 -0
- {sawnergy-1.0.0 → sawnergy-1.0.2}/sawnergy/embedding/__init__.py +0 -0
- {sawnergy-1.0.0 → sawnergy-1.0.2}/sawnergy/embedding/embedder.py +0 -0
- {sawnergy-1.0.0 → sawnergy-1.0.2}/sawnergy/logging_util.py +0 -0
- {sawnergy-1.0.0 → sawnergy-1.0.2}/sawnergy/rin/__init__.py +0 -0
- {sawnergy-1.0.0 → sawnergy-1.0.2}/sawnergy/rin/rin_builder.py +0 -0
- {sawnergy-1.0.0 → sawnergy-1.0.2}/sawnergy/rin/rin_util.py +0 -0
- {sawnergy-1.0.0 → sawnergy-1.0.2}/sawnergy/sawnergy_util.py +0 -0
- {sawnergy-1.0.0 → sawnergy-1.0.2}/sawnergy/visual/__init__.py +0 -0
- {sawnergy-1.0.0 → sawnergy-1.0.2}/sawnergy/visual/visualizer.py +0 -0
- {sawnergy-1.0.0 → sawnergy-1.0.2}/sawnergy/visual/visualizer_util.py +0 -0
- {sawnergy-1.0.0 → sawnergy-1.0.2}/sawnergy/walks/__init__.py +0 -0
- {sawnergy-1.0.0 → sawnergy-1.0.2}/sawnergy/walks/walker.py +0 -0
- {sawnergy-1.0.0 → sawnergy-1.0.2}/sawnergy/walks/walker_util.py +0 -0
- {sawnergy-1.0.0 → sawnergy-1.0.2}/sawnergy.egg-info/SOURCES.txt +0 -0
- {sawnergy-1.0.0 → sawnergy-1.0.2}/sawnergy.egg-info/dependency_links.txt +0 -0
- {sawnergy-1.0.0 → sawnergy-1.0.2}/sawnergy.egg-info/requires.txt +0 -0
- {sawnergy-1.0.0 → sawnergy-1.0.2}/sawnergy.egg-info/top_level.txt +0 -0
- {sawnergy-1.0.0 → sawnergy-1.0.2}/setup.cfg +0 -0
- {sawnergy-1.0.0 → sawnergy-1.0.2}/tests/test_embedding.py +0 -0
- {sawnergy-1.0.0 → sawnergy-1.0.2}/tests/test_rin.py +0 -0
- {sawnergy-1.0.0 → sawnergy-1.0.2}/tests/test_storage.py +0 -0
- {sawnergy-1.0.0 → sawnergy-1.0.2}/tests/test_visual.py +0 -0
- {sawnergy-1.0.0 → sawnergy-1.0.2}/tests/test_walks.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sawnergy
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: Toolkit for transforming molecular dynamics (MD) trajectories into rich graph representations
|
|
5
5
|
Home-page: https://github.com/Yehor-Mishchyriak/SAWNERGY
|
|
6
6
|
Author: Yehor Mishchyriak
|
|
@@ -71,6 +71,12 @@ node indexing, and RNG seeds stay consistent across the toolchain.
|
|
|
71
71
|
|
|
72
72
|
---
|
|
73
73
|
|
|
74
|
+
## Small visual example (constructed fully from trajectory and topology files)
|
|
75
|
+

|
|
76
|
+

|
|
77
|
+
|
|
78
|
+
---
|
|
79
|
+
|
|
74
80
|
## Core Components
|
|
75
81
|
|
|
76
82
|
### `sawnergy.rin.RINBuilder`
|
|
@@ -249,24 +255,6 @@ v.build_frame(1,
|
|
|
249
255
|
|
|
250
256
|
---
|
|
251
257
|
|
|
252
|
-
## Testing & Quality Assurance
|
|
253
|
-
|
|
254
|
-
The automated test suite (`pytest`) synthesises deterministic cpptraj outputs and exercises the entire workflow:
|
|
255
|
-
|
|
256
|
-
- RIN parsing, residue aggregation, and metadata verification.
|
|
257
|
-
- Random/self-avoiding walk sampling and probability consistency with the RIN.
|
|
258
|
-
- Embedding orchestration, frame ordering, SGNS pair generation property tests.
|
|
259
|
-
- PureML and PyTorch SGNS smoke tests verifying finite weights and decreasing loss.
|
|
260
|
-
- Visualiser smoke tests that cover data loading and artist updates.
|
|
261
|
-
|
|
262
|
-
Run the suite (inside the project virtualenv):
|
|
263
|
-
|
|
264
|
-
```bash
|
|
265
|
-
python -m pytest
|
|
266
|
-
```
|
|
267
|
-
|
|
268
|
-
---
|
|
269
|
-
|
|
270
258
|
## Project Structure
|
|
271
259
|
|
|
272
260
|
```
|
|
@@ -277,7 +265,6 @@ python -m pytest
|
|
|
277
265
|
│ ├── visual/ # Visualizer and palette utilities
|
|
278
266
|
│ ├── logging_util.py
|
|
279
267
|
│ └── sawnergy_util.py
|
|
280
|
-
├── tests/ # Synthetic end-to-end tests (pytest)
|
|
281
268
|
│
|
|
282
269
|
└── README.md
|
|
283
270
|
```
|
|
@@ -40,6 +40,12 @@ node indexing, and RNG seeds stay consistent across the toolchain.
|
|
|
40
40
|
|
|
41
41
|
---
|
|
42
42
|
|
|
43
|
+
## Small visual example (constructed fully from trajectory and topology files)
|
|
44
|
+

|
|
45
|
+

|
|
46
|
+
|
|
47
|
+
---
|
|
48
|
+
|
|
43
49
|
## Core Components
|
|
44
50
|
|
|
45
51
|
### `sawnergy.rin.RINBuilder`
|
|
@@ -218,24 +224,6 @@ v.build_frame(1,
|
|
|
218
224
|
|
|
219
225
|
---
|
|
220
226
|
|
|
221
|
-
## Testing & Quality Assurance
|
|
222
|
-
|
|
223
|
-
The automated test suite (`pytest`) synthesises deterministic cpptraj outputs and exercises the entire workflow:
|
|
224
|
-
|
|
225
|
-
- RIN parsing, residue aggregation, and metadata verification.
|
|
226
|
-
- Random/self-avoiding walk sampling and probability consistency with the RIN.
|
|
227
|
-
- Embedding orchestration, frame ordering, SGNS pair generation property tests.
|
|
228
|
-
- PureML and PyTorch SGNS smoke tests verifying finite weights and decreasing loss.
|
|
229
|
-
- Visualiser smoke tests that cover data loading and artist updates.
|
|
230
|
-
|
|
231
|
-
Run the suite (inside the project virtualenv):
|
|
232
|
-
|
|
233
|
-
```bash
|
|
234
|
-
python -m pytest
|
|
235
|
-
```
|
|
236
|
-
|
|
237
|
-
---
|
|
238
|
-
|
|
239
227
|
## Project Structure
|
|
240
228
|
|
|
241
229
|
```
|
|
@@ -246,7 +234,6 @@ python -m pytest
|
|
|
246
234
|
│ ├── visual/ # Visualizer and palette utilities
|
|
247
235
|
│ ├── logging_util.py
|
|
248
236
|
│ └── sawnergy_util.py
|
|
249
|
-
├── tests/ # Synthetic end-to-end tests (pytest)
|
|
250
237
|
│
|
|
251
238
|
└── README.md
|
|
252
239
|
```
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sawnergy
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: Toolkit for transforming molecular dynamics (MD) trajectories into rich graph representations
|
|
5
5
|
Home-page: https://github.com/Yehor-Mishchyriak/SAWNERGY
|
|
6
6
|
Author: Yehor Mishchyriak
|
|
@@ -71,6 +71,12 @@ node indexing, and RNG seeds stay consistent across the toolchain.
|
|
|
71
71
|
|
|
72
72
|
---
|
|
73
73
|
|
|
74
|
+
## Small visual example (constructed fully from trajectory and topology files)
|
|
75
|
+

|
|
76
|
+

|
|
77
|
+
|
|
78
|
+
---
|
|
79
|
+
|
|
74
80
|
## Core Components
|
|
75
81
|
|
|
76
82
|
### `sawnergy.rin.RINBuilder`
|
|
@@ -249,24 +255,6 @@ v.build_frame(1,
|
|
|
249
255
|
|
|
250
256
|
---
|
|
251
257
|
|
|
252
|
-
## Testing & Quality Assurance
|
|
253
|
-
|
|
254
|
-
The automated test suite (`pytest`) synthesises deterministic cpptraj outputs and exercises the entire workflow:
|
|
255
|
-
|
|
256
|
-
- RIN parsing, residue aggregation, and metadata verification.
|
|
257
|
-
- Random/self-avoiding walk sampling and probability consistency with the RIN.
|
|
258
|
-
- Embedding orchestration, frame ordering, SGNS pair generation property tests.
|
|
259
|
-
- PureML and PyTorch SGNS smoke tests verifying finite weights and decreasing loss.
|
|
260
|
-
- Visualiser smoke tests that cover data loading and artist updates.
|
|
261
|
-
|
|
262
|
-
Run the suite (inside the project virtualenv):
|
|
263
|
-
|
|
264
|
-
```bash
|
|
265
|
-
python -m pytest
|
|
266
|
-
```
|
|
267
|
-
|
|
268
|
-
---
|
|
269
|
-
|
|
270
258
|
## Project Structure
|
|
271
259
|
|
|
272
260
|
```
|
|
@@ -277,7 +265,6 @@ python -m pytest
|
|
|
277
265
|
│ ├── visual/ # Visualizer and palette utilities
|
|
278
266
|
│ ├── logging_util.py
|
|
279
267
|
│ └── sawnergy_util.py
|
|
280
|
-
├── tests/ # Synthetic end-to-end tests (pytest)
|
|
281
268
|
│
|
|
282
269
|
└── README.md
|
|
283
270
|
```
|
|
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
|
|
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
|