https://github.com/allencellmodeling/runman
💻🏃♂️
https://github.com/allencellmodeling/runman
Last synced: 6 months ago
JSON representation
💻🏃♂️
- Host: GitHub
- URL: https://github.com/allencellmodeling/runman
- Owner: AllenCellModeling
- License: other
- Created: 2019-11-05T21:07:29.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-23T00:36:15.000Z (about 6 years ago)
- Last Synced: 2025-07-02T05:21:28.834Z (8 months ago)
- Language: Python
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Run Manager
[](https://github.com/AllenCellModeling/runman/actions)
[](https://AllenCellModeling.github.io/runman)
Mange runs (mostly of stochastic simulations)
---
## Features
* Register a world, functions to be called on each timestep, and functions that perform logging
## Quick Start
```python
import runman
counter = []
def step(timestep):
counter.append(timestep)
def log():
print(counter[-1])
return counter[-1]
run = runman.Run(assets=[counter, ],
stepfns=[step, ],
logfns=[log, ],
loginterval=2)
run.run(10)
```
## Installation
Clone and install or `pip install git+https://github.com/AllenCellModeling/runman.git`
## Documentation
For full package documentation please visit [AllenCellModeling.github.io/runman](https://AllenCellModeling.github.io/runman).
Available under the Allen Institute Software License