Merge refactored Plantonic Solid module#98
Closed
yingyue2030699 wants to merge 57 commits intomainfrom
Closed
Conversation
… structure not as expected previously; Removed ProAffinity legacy folder and fixed adfr path checking.
Handle "no data" error when processing transition matrices since this is not a standard output.
Fixed transition matrix parser; tutorial_6bno test passed!!!
## Overview
This high-level API provides convenient functions for:
- Creating hyperparameter configurations with sensible defaults
- Using preset configurations for common scenarios
- Enabling specific features (ODE, affinity prediction, etc.)
- Managing configurations (save, load, update, validate)
## Quick Start
```python
from ionerdss.model import pdb
# Create and use hyperparameters
params = pdb.create_hyperparameters(
interface_detect_distance_cutoff=0.8,
interface_detect_n_residue_cutoff=5
)
# Build model with configuration
builder = pdb.PDBModelBuilder("1ABC")
system = builder.build_system(
workspace_path="./workspace",
hyperparams=params
)
```
…how to use dynamic docstring (currently used in set_hyperparameters to directly inherit doc string from hyperparameters.py)
Successfully extended the ionerdss ODE module to support any molecular system topology (linear, cyclic, branched, complete graphs) by implementing NetworkX-based naming and integrating graph-based subcomplex generation.
Codecov Report❌ Patch coverage is 📢 Thoughts on this report? Let us know! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Tasks to consider: