Skip to content

Commit

Permalink
minimal changes to param scan composite
Browse files Browse the repository at this point in the history
  • Loading branch information
eagmon committed Feb 14, 2024
1 parent b1ec62c commit 285f404
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion biosimulator_processes/experiments/parameter_scan.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ def __init__(self, config=None):
super().__init__(config)

def inputs(self):
return {}
return {
'parameters': ''
}

def outputs(self):
return {}
Expand All @@ -21,6 +23,17 @@ def update(self, inputs):

def test_param_scan_copasi():
initial_sim_state = {
'parameter_scan': {
'_type': 'step',
'address': 'local:!biosimulator_processes.experiments.parameter_scan.ParameterScan',
'config': {},
'inputs': {
'parameters': {}
},
'outputs': {
'simulations': {}
}
},
'copasi': {
'_type': 'process',
'address': 'local:copasi',
Expand Down

0 comments on commit 285f404

Please sign in to comment.