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