File tree Expand file tree Collapse file tree 3 files changed +17
-4
lines changed Expand file tree Collapse file tree 3 files changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -26,5 +26,6 @@ The PyNeuroML package includes the following sub-packages:
2626 pyneuroml.povray
2727 pyneuroml.runners
2828 pyneuroml.swc
29+ pyneuroml.sbml
2930 pyneuroml.tune
3031 pyneuroml.utils
Original file line number Diff line number Diff line change 1+ pyneuroml.sbml module
2+ ======================
3+
4+ .. automodule :: pyneuroml.sbml
5+ :members:
6+ :undoc-members:
7+ :show-inheritance:
Original file line number Diff line number Diff line change 1111
1212
1313def validate_sbml_files (input_files : List [str ], strict_units : bool = False ) -> bool :
14- """
15- validate each input file using libsbml.SBMLDocument.checkConsistency
16- input_files is a list of one or more filepaths
17- strict_units converts unit consistency warnings into errors
14+ """Validate input files using libsbml.SBMLDocument.checkConsistency
15+
16+ :param input_files: a list of one or more filepaths
17+ :type input_files: list(str)
18+ :param strict_units: toggle whether unit consistency warnings should be
19+ treated as errors
20+ :type strict_units: bool
21+ :returns: True if all files are valid, else False
22+ :rtype: bool
1823 """
1924
2025 if not len (input_files ) >= 1 :
You can’t perform that action at this time.
0 commit comments