CytoML.par.set {CytoML}R Documentation

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

Description

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

Usage

CytoML.par.set(name, value)

CytoML.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

 #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")


[Package CytoML version 2.5.4 Index]