You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.add_argument( '-tp', '--tweak_param_file', type=str, help='Optional: Generate file of tweakable params belonging to selected subset of model', default="" )
1534
1534
parser.add_argument( '-sf', '--scoreFunc', type=str, help='Optional: specify scoring function for comparing expt and sim. One can do this either as an expression of the form f(expt, sim, datarange), eg. (expt-sim)/datarange; or as NRMS which does a normalized root-mean-square. NRMS is highly recommended. Default: '+defaultScoreFunc, default=defaultScoreFunc )
1535
-
parser.add_argument( '--solver', type=str, help='Optional: Solver to use. Options are gsl, gssa and lsoda', default="gsl" )
1535
+
parser.add_argument( '--solver', type=str, help='Optional: Solver to use. Options are gsl, gssa and lsoda', default="lsoda" )
1536
1536
parser.add_argument( '-t', '--tabulate_output', action="store_true", help='Flag: Print table of plot values. Default is NOT to print table' )
1537
1537
parser.add_argument( '-hp', '--hide_plot', action="store_true", help='Hide plot output of simulation along with expected values. Default is to show plot.' )
1538
1538
parser.add_argument( '-hs', '--hide_subplots', action="store_true", help='Hide subplot output of simulation. By default the graphs include dotted lines to indicate individual quantities (e.g., states of a molecule) that are being summed to give a total response. This flag turns off just those dotted lines, while leaving the main plot intact.' )
Copy file name to clipboardExpand all lines: runAllParallel.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -85,7 +85,7 @@ def main():
85
85
parser.add_argument( '-n', '--numProcesses', type=int, help='Optional: Number of processes to spawn, default = 4', default=4 )
86
86
parser.add_argument( '-m', '--model', type=str, help='Optional: Composite model definition file. First searched in directory "location", then in current directory.', default="" )
87
87
parser.add_argument( '-map', '--map', type=str, help='Model entity mapping file. This is a JSON file.', default="" )
0 commit comments