sawnergy 1.0.0__tar.gz → 1.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.

Potentially problematic release.


This version of sawnergy might be problematic. Click here for more details.

Files changed (31) hide show
  1. {sawnergy-1.0.0/sawnergy.egg-info → sawnergy-1.0.1}/PKG-INFO +1 -20
  2. {sawnergy-1.0.0 → sawnergy-1.0.1}/README.md +0 -19
  3. {sawnergy-1.0.0 → sawnergy-1.0.1/sawnergy.egg-info}/PKG-INFO +1 -20
  4. {sawnergy-1.0.0 → sawnergy-1.0.1}/LICENSE +0 -0
  5. {sawnergy-1.0.0 → sawnergy-1.0.1}/NOTICE +0 -0
  6. {sawnergy-1.0.0 → sawnergy-1.0.1}/sawnergy/__init__.py +0 -0
  7. {sawnergy-1.0.0 → sawnergy-1.0.1}/sawnergy/embedding/SGNS_pml.py +0 -0
  8. {sawnergy-1.0.0 → sawnergy-1.0.1}/sawnergy/embedding/SGNS_torch.py +0 -0
  9. {sawnergy-1.0.0 → sawnergy-1.0.1}/sawnergy/embedding/__init__.py +0 -0
  10. {sawnergy-1.0.0 → sawnergy-1.0.1}/sawnergy/embedding/embedder.py +0 -0
  11. {sawnergy-1.0.0 → sawnergy-1.0.1}/sawnergy/logging_util.py +0 -0
  12. {sawnergy-1.0.0 → sawnergy-1.0.1}/sawnergy/rin/__init__.py +0 -0
  13. {sawnergy-1.0.0 → sawnergy-1.0.1}/sawnergy/rin/rin_builder.py +0 -0
  14. {sawnergy-1.0.0 → sawnergy-1.0.1}/sawnergy/rin/rin_util.py +0 -0
  15. {sawnergy-1.0.0 → sawnergy-1.0.1}/sawnergy/sawnergy_util.py +0 -0
  16. {sawnergy-1.0.0 → sawnergy-1.0.1}/sawnergy/visual/__init__.py +0 -0
  17. {sawnergy-1.0.0 → sawnergy-1.0.1}/sawnergy/visual/visualizer.py +0 -0
  18. {sawnergy-1.0.0 → sawnergy-1.0.1}/sawnergy/visual/visualizer_util.py +0 -0
  19. {sawnergy-1.0.0 → sawnergy-1.0.1}/sawnergy/walks/__init__.py +0 -0
  20. {sawnergy-1.0.0 → sawnergy-1.0.1}/sawnergy/walks/walker.py +0 -0
  21. {sawnergy-1.0.0 → sawnergy-1.0.1}/sawnergy/walks/walker_util.py +0 -0
  22. {sawnergy-1.0.0 → sawnergy-1.0.1}/sawnergy.egg-info/SOURCES.txt +0 -0
  23. {sawnergy-1.0.0 → sawnergy-1.0.1}/sawnergy.egg-info/dependency_links.txt +0 -0
  24. {sawnergy-1.0.0 → sawnergy-1.0.1}/sawnergy.egg-info/requires.txt +0 -0
  25. {sawnergy-1.0.0 → sawnergy-1.0.1}/sawnergy.egg-info/top_level.txt +0 -0
  26. {sawnergy-1.0.0 → sawnergy-1.0.1}/setup.cfg +0 -0
  27. {sawnergy-1.0.0 → sawnergy-1.0.1}/tests/test_embedding.py +0 -0
  28. {sawnergy-1.0.0 → sawnergy-1.0.1}/tests/test_rin.py +0 -0
  29. {sawnergy-1.0.0 → sawnergy-1.0.1}/tests/test_storage.py +0 -0
  30. {sawnergy-1.0.0 → sawnergy-1.0.1}/tests/test_visual.py +0 -0
  31. {sawnergy-1.0.0 → sawnergy-1.0.1}/tests/test_walks.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sawnergy
3
- Version: 1.0.0
3
+ Version: 1.0.1
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
@@ -249,24 +249,6 @@ v.build_frame(1,
249
249
 
250
250
  ---
251
251
 
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
252
  ## Project Structure
271
253
 
272
254
  ```
@@ -277,7 +259,6 @@ python -m pytest
277
259
  │ ├── visual/ # Visualizer and palette utilities
278
260
  │ ├── logging_util.py
279
261
  │ └── sawnergy_util.py
280
- ├── tests/ # Synthetic end-to-end tests (pytest)
281
262
 
282
263
  └── README.md
283
264
  ```
@@ -218,24 +218,6 @@ v.build_frame(1,
218
218
 
219
219
  ---
220
220
 
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
221
  ## Project Structure
240
222
 
241
223
  ```
@@ -246,7 +228,6 @@ python -m pytest
246
228
  │ ├── visual/ # Visualizer and palette utilities
247
229
  │ ├── logging_util.py
248
230
  │ └── sawnergy_util.py
249
- ├── tests/ # Synthetic end-to-end tests (pytest)
250
231
 
251
232
  └── README.md
252
233
  ```
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sawnergy
3
- Version: 1.0.0
3
+ Version: 1.0.1
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
@@ -249,24 +249,6 @@ v.build_frame(1,
249
249
 
250
250
  ---
251
251
 
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
252
  ## Project Structure
271
253
 
272
254
  ```
@@ -277,7 +259,6 @@ python -m pytest
277
259
  │ ├── visual/ # Visualizer and palette utilities
278
260
  │ ├── logging_util.py
279
261
  │ └── sawnergy_util.py
280
- ├── tests/ # Synthetic end-to-end tests (pytest)
281
262
 
282
263
  └── README.md
283
264
  ```
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes