Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,15 @@
</p>


| **UPDATES** |
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| 2025.02.17 : Check out our new examples for trajectory analysis [Example_12](https://stolllab.github.io/chiLife/gallery/12-Analyzing_MD_Simulations.html) and using OpenMM for repacking [Example_13](https://stolllab.github.io/chiLife/gallery/13-OpenMM_Score_Function.html). |
| **UPDATES** |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| 2025.07.10 : chilife now supported for Python 3.13 |
| 2025.02.17 : Check out our new example for trajectory analysis [Example_12](https://stolllab.github.io/chiLife/gallery/12-Analyzing_MD_Simulations.html) and using OpenMM for repacking [Example_13](https://stolllab.github.io/chiLife/gallery/13-OpenMM_Score_Function.html).|
| 2024.12.26 : Changes to the "energy funciton" backend. forcefield, forgive factors, etc should all be parts of the energy function now, and not parts of a rotamer library Checkout [Example_07](https://stolllab.github.io/chiLife/gallery/13-OpenMM_Score_Function.html) |
| 2024.08.15 : chiLife 1.0 released! |
| 2024.08.15 : chiLife can now be used to create arbitrary peptides with natural and NCAAs. Checkout the `make_peptide` function. |
| 2024.08.15 : chiLife can make NCAA structures from smiles. Checkout `smiles2residue`. Note: Requires RDKit to be installed. |
| chiLife now supports arbitrary backbone attachments including DNA and RNA labels and more! |
| 2024.08.15 : chiLife 1.0 released! |
| 2024.08.15 : chiLife can now be used to create arbitrary peptides with natural and NCAAs. Checkout the `make_peptide` function. |
| 2024.08.15 : chiLife can make NCAA structures from smiles. Checkout `smiles2residue`. Note: Requires RDKit to be installed. |
| chiLife now supports arbitrary backbone attachments including DNA and RNA labels and more! |



Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ authors=[{name = 'Maxx Tessmer', email='mhtessmer@gmail.com'},
{name = 'Stefan Stoll', email='stst@uw.edu'}]
keywords=['Spin-label', 'EPR', 'DEER', 'PELDOR', 'Side-chain']
dynamic = ["version"]
requires-python = ">= 3.8,<3.13"
requires-python = ">= 3.8,<3.14"
dependencies = ['numpy>=1.23.0',
'scipy>=1.6.3',
'matplotlib>=3.3.4',
Expand Down
4 changes: 2 additions & 2 deletions src/chilife/MolSysIC.py
Original file line number Diff line number Diff line change
Expand Up @@ -813,8 +813,8 @@ def apply_chain_operators(self, idx=None, from_list=False):
for i, op in zip(idx, self._chain_operators[idx]):
for start, stop in self._chain_segs:
current_mx, current_ori = ic_mx(*cart_coords[i, start:start+3])
mx = self.chain_operators[start]['mx']
ori = self.chain_operators[start]['ori']
mx = op[start]['mx']
ori = op[start]['ori']
m2m3 = current_mx @ mx
cart_coords[i, start:stop] = (cart_coords[i, start:stop] - current_ori) @ m2m3 + ori

Expand Down
2 changes: 1 addition & 1 deletion src/chilife/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@
# SpinLabel = SpinLabel.SpinLabel
# dSpinLabel = dSpinLabel.dSpinLabel

__version__ = '1.1.6'
__version__ = '1.1.7'
2 changes: 1 addition & 1 deletion tests/test_Scoring.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def test_efunc_dlabel(func):
f = chilife.ljEnergyFunc(func)
test = f(dSL)
ans = np.load(f'test_data/d{func.__name__}.npy')
np.testing.assert_almost_equal(test, ans, decimal=4)
np.testing.assert_almost_equal(test, ans, decimal=3)


def test_molar_gas_constant():
Expand Down