Skip to content

Commit

Permalink
Merge branch 'development' into experimental
Browse files Browse the repository at this point in the history
  • Loading branch information
pgleeson committed Feb 7, 2024
2 parents 1034d5b + b437dea commit efa6086
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions pyneuroml/pynml.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,14 @@ def parse_arguments():
action="store_true",
help=("(Via jNeuroML) Load a LEMS file, and convert it\n" "to SBML format"),
)
mut_exc_opts.add_argument(
"-sbml-sedml",
action="store_true",
help=(
"(Via jNeuroML) Load a LEMS file, and convert it\n"
"to SBML format with a SED-ML file describing the experiment to run"
),
)
mut_exc_opts.add_argument(
"-matlab",
action="store_true",
Expand Down Expand Up @@ -2369,6 +2377,9 @@ def evaluate_arguments(args):
elif args.sbml:
confirm_lems_file(f)
post_args = "-sbml"
elif args.sbml_sedml:
confirm_lems_file(f)
post_args = "-sbml-sedml"
elif args.matlab:
confirm_lems_file(f)
post_args = "-matlab"
Expand Down

0 comments on commit efa6086

Please sign in to comment.