| ModelHistory-class {rsbml} | R Documentation |
Stores the history of an SBML model, including the created/modified dates and the creators.
Objects can be created by calls of the form new("ModelHistory", ...).
createdDate:"character"
representing the date/time of creation, in W3CDTF format:
YYYY-MM-DDThh:mm:ssTZD, e.g. "1997-07-16T19:20:30+01:00".modifiedDate:"character"
representing the date/time of last modification, in W3CDTF format:
YYYY-MM-DDThh:mm:ssTZD, e.g. "1997-07-16T19:20:30+01:00".creators:"list" of instances
of ModelCreator, one for each creator of the model.signature(object = "ModelHistory"):
get the createdDate slot.signature(object = "ModelHistory", value =
"character"): Set the createdDate slot to a correctly
formatted string. signature(object = "ModelHistory", value =
"POSIXt"): Set the createdDate slot with a
POSIXt instance, obtained e.g. from
Sys.time.signature(object = "ModelHistory"): gets the
creators slot. signature(object = "ModelHistory"): sets
the creators slot. signature(object = "ModelHistory"):
get the modifiedDate slot.signature(object = "ModelHistory", value =
"character"): Set the modifiedDate slot to a correctly
formatted string. signature(object = "ModelHistory", value =
"POSIXt"): Set the modifiedDate slot with a
POSIXt instance, obtained e.g. from
Sys.time.Michael Lawrence