runman

Mange runs of stochastic simulations


Keywords
runman
License
MIT
Install
pip install runman==0.2.1

Documentation

Run Manager

Build Status Documentation

Mange runs (mostly of stochastic simulations)


Features

  • Register a world, functions to be called on each timestep, and functions that perform logging

Quick Start

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.

Available under the Allen Institute Software License