https://github.com/allencellmodeling/runman
💻🏃♂️
https://github.com/allencellmodeling/runman
Last synced: 4 months ago
JSON representation
💻🏃♂️
- Host: GitHub
- URL: https://github.com/allencellmodeling/runman
- Owner: AllenCellModeling
- License: other
- Created: 2019-11-05T21:07:29.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-23T00:36:15.000Z (over 5 years ago)
- Last Synced: 2025-02-18T09:40:29.027Z (4 months ago)
- Language: Python
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 4
- 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 runmancounter = []
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