Skip to content

AllenCellModeling/runman

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

13 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

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

About

πŸ’»πŸƒβ€β™‚οΈ

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published