Extract individual samples merged using cyto_merge() based on "Sample ID" column created by cyto_barcode().

cyto_split(x, names = NULL)

Arguments

x

object of class flowFrame.

names

vector of names to assign to each of the extracted flowFrames when saving the split files. Name should be supplied in the order used prior to merging.

Value

list of split flowFrames.

See also

Author

Dillon Hammill, Dillon.Hammill@anu.edu.au

Examples

# Load CytoExploreRData to access data library(CytoExploreRData) # Activation flowSet fs <- Activation # Merge samples fr <- cyto_merge_by(fs, "all")[[1]] # Split merged samples fr_list <- cyto_split(fr, names = cyto_names(fs))