CLivD Simulation GUI
This file contains code to create a CLivDPoints model and run it using the InterfaceModel from biomodel.gui.
1"""
2This file contains code to create a CLivDPoints model and run it using the InterfaceModel from biomodel.gui.
3"""
4from biomodel.models import CLivDPoints
5from biomodel.gui import InterfaceModel
6
7if __name__ == '__main__':
8 model = CLivDPoints()
9
10 variation = {}
11
12 model = InterfaceModel(model, None, variation)
13 model.run()