Learn R Programming

flowWorkspace (version 3.16.0)

flowWorkspace.par.set: flowWorkspace.par.set sets a set of parameters in the flowWorkspace package namespace.

Description

flowWorkspace.par.set sets a set of parameters in the flowWorkspace package namespace.

flowWorkspace.par.get gets a set of parameters in the flowWorkspace package namespace.

Usage

flowWorkspace.par.set(name, value)
flowWorkspace.par.get(name = NULL)

Arguments

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.

Details

It is currently used to add/remove the support for a specific flowJo versions (parsed from xml node '/Workspace/version' in flowJo workspace)

Examples

Run this code
#get the flowJo versions currently supported
 old <- flowWorkspace.par.get("flowJo_versions")

 #add the new version
 old[["win"]] <- c(old[["win"]], "1.7")
 flowWorkspace.par.set("flowJo_versions", old)

 flowWorkspace.par.get("flowJo_versions")

Run the code above in your browser using DataLab