CytoML.par.set {CytoML} | R Documentation |
CytoML.par.get gets a set of parameters in the CytoML package namespace.
CytoML.par.set(name, value) CytoML.par.get(name = NULL)
name |
The name of a parameter category to get or set. |
value |
A named list of values to set for category name or a list of such lists if name is missing. |
It is currently used to add/remove the support for a specific flowJo versions (parsed from xml node '/Workspace/version' in flowJo workspace)
#get the flowJo versions currently supported old <- CytoML.par.get("flowJo_versions") #add the new version old[["win"]] <- c(old[["win"]], "1.7") CytoML.par.set("flowJo_versions", old) CytoML.par.get("flowJo_versions")