Skip to content

Commit

Permalink
Merge pull request #1 from deGrootLab/development
Browse files Browse the repository at this point in the history
v0.1.0
  • Loading branch information
tomcklam authored May 19, 2023
2 parents 793bf93 + 4fdf7a0 commit ccc9aa0
Show file tree
Hide file tree
Showing 32 changed files with 10,004 additions and 1,898 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#
*.npz
*.lock
test/

## Byte-compiled / optimized / DLL files
__pycache__/
Expand Down Expand Up @@ -141,3 +142,5 @@ dmypy.json
# Cython debug symbols
cython_debug/

# VS Code
.vscode/
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Changelog

## [0.1.0] - 2023-05-22

### Added

- Calculation of net fluxes for permeation cycles
- Method of calculating current via counting permeation events across S2-S3 interface.
- Option of writing indices of objects in SF or involved in permeation to files.
- Changelog.

### Changed

- Charge-scaled tutorial.
- Part of the codes formatted to conform to the PEP 8 style.

### Removed

- Obsolete methods for determining SF occupancy and ion jumps in SF.

## [0.0.1] - 2023-03-30

### Added

- Initial release of KPERM

[0.1.0]: https://github.com/deGrootLab/KPerm/compare/v0.0.1...v0.1.0
[0.0.1]: https://github.com/deGrootLab/KPerm/releases/tag/v0.0.1
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# KPerm - Permeation Cycles in Potassium Channels
# KPerm - Toolkit for Analysis of Permeation Cycles in Potassium Channels
This package allows you to identify permeation cycles in potassium channels from molecular dynamics (MD) simulation trajectories.

## Conda
Expand Down
4 changes: 1 addition & 3 deletions kperm/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
from .functions import *
from .permeation import *
from .markov import *
from kperm.channel import Channel, detect_sf, detectSF
Loading

0 comments on commit ccc9aa0

Please sign in to comment.