getKeywords,flowJoWorkspace,character-method {CytoML}R Documentation

Get Keywords

Description

Retrieve keywords associated with a workspace

Usage

## S4 method for signature 'flowJoWorkspace,character'
getKeywords(obj, y, ...)

## S4 method for signature 'flowJoWorkspace,numeric'
getKeywords(obj, y, ...)

Arguments

obj

A flowJoWorkspace

y

ccharacter or numeric specifying the sample name or sample ID

...

other arguments sampNloc a character the location where the sample name is specified. See parseWorkspace for more details.

Details

Retrieve a list of keywords from a flowJoWorkspace

Value

A list of keyword - value pairs.

Examples

  require(flowWorkspaceData)
  d<-system.file("extdata",package="flowWorkspaceData")
  wsfile<-list.files(d,pattern="manual.xml",full=TRUE)
  ws <- openWorkspace(wsfile);
  
  getSamples(ws)
  res <- try(getKeywords(ws,"CytoTrol_CytoTrol_1.fcs"), silent = TRUE)
  print(res[[1]])
  getKeywords(ws, 1)

[Package CytoML version 1.10.0 Index]