CytoML.par.get: CytoML.par.set sets a set of parameters in the CytoML package...

Description Usage Arguments Details Examples

Description

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

Usage

1
2
3

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

1
2
3
4
5
6
7
8
 #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")

CytoML documentation built on March 12, 2021, 2 a.m.