Skip to content
This repository has been archived by the owner on Mar 6, 2024. It is now read-only.

Commit

Permalink
updated sed model config schema
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexPatrie committed Feb 28, 2024
1 parent c885459 commit 0b6c0e5
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions biosimulator_processes/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,5 +143,21 @@ def generate_parameter_scan_instance(
return instance


def generate_sed_model_config_schema(
entrypoint: Dict, # per CopasiProcess config_schema; ie: {'biomodel_id': 'BIOMODEL>>>>'}
species_changes: Dict, # ie: {'a': {'initial_concentration': 32.3}}
parameter_changes: Dict,
reaction_changes: Dict
) -> Dict:
return {
**entrypoint,
'model': {
'model_changes': {
'species_changes': species_changes,

}
}
}

def perturb_parameter(param: str, degree: float):
pass

0 comments on commit 0b6c0e5

Please sign in to comment.