jsbml icon indicating copy to clipboard operation
jsbml copied to clipboard

method to deal with default values

Open mephenor opened this issue 16 years ago • 11 comments

Follow up on the discussions on libsbml-development to know what to do for default values when saving an SBML level 3 model.

Reported by: niko-rodrigue

mephenor avatar Oct 06 '09 15:10 mephenor

function like hasRequiredAttributes, hasRequiredElements, setUnsetAttributesToL2v4Default would probably be good to add to help.

Original comment by: niko-rodrigue

mephenor avatar Oct 06 '09 15:10 mephenor

All classes should at least offer convenient constructors where all values can be set in one call. There should be multiple constructors so that users can set many combinations of values.

Original comment by: draeger

mephenor avatar Oct 10 '09 12:10 mephenor

hasRequiredAttributes? This would mean we have to implement such a static function?

Original comment by: draeger

mephenor avatar Oct 10 '09 13:10 mephenor

Ok, I see, we should probably implement

* initDefaults(int level, int version) to allow users to set the defaults of some class as specified for the given L/V combination. This method could be called by the initDefaults() method

  • the check if all required attributes have been set, i.e. hasRequiredAttributes/Elements().

This makes sense. What about having mutliple constructors?

Original comment by: draeger

mephenor avatar Feb 17 '11 15:02 mephenor

I think, supporting just L2V4 like libSBML would be enough. We should not call it from the constructor by default, I think.

The advantages of a method like setUnsetAttributesToL2v4Default() is that, on an SBML editor, you can ask the user to fill in the attributes as he like, when he is saving the application developer could decide to call setUnsetAttributesToL2v4Default to complete only the attributes that have not been set. He could also call hasRequiredAttributes and if not ask the user if he want to get back to edit the element or if he just want to have the default values.

Original comment by: niko-rodrigue

mephenor avatar Feb 17 '11 15:02 mephenor

I think we did implement the initDefaults(int level, int version) methods but implementing setUnsetAttributesToL2v4Default might be good as well even now.

niko-rodrigue avatar Mar 09 '17 16:03 niko-rodrigue

Personally, I would not support implementing a method with a prefix "setUnset" which is highly confusing. The initDefaults(int level, int version) should make clear what is meant. We should highlight this better in the documentation.

draeger avatar Mar 10 '17 09:03 draeger

I think the spirit of the setUnset method from libSBML is to initialize only the values that have not been set directly by the user. Like instead of calling initDefaults on all L3 elements at the start, you can call 'setUnsetXXX' (or whatever name but we might want to keep the libSBML name as well for compatibility) just before writing to be sure to have a valid model. Also at the moment, the initDefaults method are not public on the SBase interface so you cannot call them easily, we have a pivotal tracker item about that (https://www.pivotaltracker.com/story/show/121664987).

niko-rodrigue avatar Mar 10 '17 10:03 niko-rodrigue

And the method hasRequiredAttributes would also be useful. We could, in general, re-review what utility methods libSBML provide to it's users around the default values and see which ones we can implement easily or want to implement.

niko-rodrigue avatar Mar 10 '17 10:03 niko-rodrigue

Yes, so let's make initDefaults(int level, int version) public on SBase as suggested and also add this hasAllRequiredAttributes method, but not setUnset which sounds to me like "do undo" or "yes no" and also instead of having just one method with level and version as attributes we would have to implement n such specific methods for each Level/Version combination, which cannot be in our interest.

draeger avatar Mar 10 '17 10:03 draeger

in fact, checking the libsbml java api for Species (http://sbml.org/Software/libSBML/docs/java-api/org/sbml/libsbml/Species.html), it seems that they don't have any more the method setUnsetAttributesToL2v4Default, at least not publicly. And the only methods they have are initDefaults() and hasRequiredAttributes() so that make it easier.

niko-rodrigue avatar Mar 10 '17 11:03 niko-rodrigue