Extract individual samples merged using cyto_merge() based on
"Sample ID" column created by cyto_barcode().
cyto_split(x, names = NULL)
| x | object of class |
|---|---|
| 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. |
list of split flowFrames.
Dillon Hammill, Dillon.Hammill@anu.edu.au
# 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))