R/zzz.R
CytoML.par.get.Rd
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")#> $win #> [1] "1.61" "1.6" "1.7" #> #> $macII #> [1] "2.0" #> #> $macIII #> [1] "3.0" #> #> $vX #> [1] "1.8" "20.0" #>