Generalized Kinetic Modeler: A Python package for modeling arbitrary kinetic schemes.
Project description
GeKiM (Generalized Kinetic Modeler)
Description
GeKiM (Generalized Kinetic Modeler) is a Python package designed for creating, interpreting, and modeling arbitrary kinetic schemes. Schemes are defined by the user in a dictionary of species and transitions, which is used to initialize an instance of the NState class. Choose (or make) and initialize a simulator for the instance and run it. Field-specific practices are found in gekim/fields.
Installation
With pip:
pip install gekim
Or directly from the source code:
git clone https://github.com/kghaby/GeKiM.git
cd GeKiM
pip install .
Usage
Here is a basic example of how to use GeKiM to create and simulate a kinetic system:
import gekim as gk
from gekim.fields.bio.enzyme.inhib import irrev as ii
# Define your kinetic scheme in a configuration dictionary
concI0,concE0 = 100,1
scheme = {
'species': {
"I": {"y0": concI0, "label": "I"},
"E": {"y0": concE0, "label": "E"},
"EI": {"y0": 0, "label": "EI"},
},
'transitions': {
"kon": {"k": 0.01, "source": ["2E","I"], "target": ["EI"]},
"koff": {"k": 0.1, "source": ["EI"], "target": ["2E","I"]},
}
}
# Initialize a system with your schematic dictionary
system = gk.schemes.NState(scheme,quiet=False)
# Choose a simulator and go. In this example we're doing a deterministic
# simulation of the concentrations of each species over time.
# Note that `system.simulator() = gk.simulators.ODESolver(system)` may be more doc-hint friendly
system.set_simulator(gk.simulators.ODESolver)
system.simulator.simulate()
# Fit the data to experimental models to extract mock-experimental measurements
final_state = system.species["EI"].simout["y"]
all_bound = system.sum_species_simout(blacklist=["E","I"])
fit_output = ii.kobs_uplim_fit_to_occ_final_wrt_t(
t,final_state,nondefault_params={"Etot":{"value":concE0,"vary":False}})
For more detailed examples, please refer to the examples directory.
Documentation
Documentation and example notebook(s) are pending.
Contributing
If you have suggestions or want to contribute code, please feel free to open an issue or a pull request.
License
GeKiM is licensed under the GPL-3.0.
Contact
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gekim-0.6.3.tar.gz.
File metadata
- Download URL: gekim-0.6.3.tar.gz
- Upload date:
- Size: 53.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf89f255f718844aff7996d4bc10f7339d3c40487b7c2aca382b1b4b745a1caf
|
|
| MD5 |
de6ae254d4afb17890b88a33171ad39d
|
|
| BLAKE2b-256 |
754c8ed0ef10b75397d6fd4b07dcffdec93074d126aab09f7a989965f8d9365b
|
File details
Details for the file gekim-0.6.3-py3-none-any.whl.
File metadata
- Download URL: gekim-0.6.3-py3-none-any.whl
- Upload date:
- Size: 55.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2070970f0764b01a8dcf0f2d7deee41f61ed8c9e8f8c7f1ce34cb8e5f405493
|
|
| MD5 |
35f422c18ffb1d02565eebe0467909ca
|
|
| BLAKE2b-256 |
3a9e90af820383c574bb4597454fb69295c1dd2c2f4b453a48f89509ce2a6516
|