Skip to content

Commit ccc9aa0

Browse files
authored
Merge pull request #1 from deGrootLab/development
v0.1.0
2 parents 793bf93 + 4fdf7a0 commit ccc9aa0

32 files changed

+10004
-1898
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#
22
*.npz
33
*.lock
4+
test/
45

56
## Byte-compiled / optimized / DLL files
67
__pycache__/
@@ -141,3 +142,5 @@ dmypy.json
141142
# Cython debug symbols
142143
cython_debug/
143144

145+
# VS Code
146+
.vscode/

CHANGELOG.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Changelog
2+
3+
## [0.1.0] - 2023-05-22
4+
5+
### Added
6+
7+
- Calculation of net fluxes for permeation cycles
8+
- Method of calculating current via counting permeation events across S2-S3 interface.
9+
- Option of writing indices of objects in SF or involved in permeation to files.
10+
- Changelog.
11+
12+
### Changed
13+
14+
- Charge-scaled tutorial.
15+
- Part of the codes formatted to conform to the PEP 8 style.
16+
17+
### Removed
18+
19+
- Obsolete methods for determining SF occupancy and ion jumps in SF.
20+
21+
## [0.0.1] - 2023-03-30
22+
23+
### Added
24+
25+
- Initial release of KPERM
26+
27+
[0.1.0]: https://github.com/deGrootLab/KPerm/compare/v0.0.1...v0.1.0
28+
[0.0.1]: https://github.com/deGrootLab/KPerm/releases/tag/v0.0.1

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# KPerm - Permeation Cycles in Potassium Channels
1+
# KPerm - Toolkit for Analysis of Permeation Cycles in Potassium Channels
22
This package allows you to identify permeation cycles in potassium channels from molecular dynamics (MD) simulation trajectories.
33

44
## Conda

kperm/__init__.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
from .functions import *
2-
from .permeation import *
3-
from .markov import *
1+
from kperm.channel import Channel, detect_sf, detectSF

0 commit comments

Comments
 (0)