prepare_fcs_files <- function(files = list.files("inst/extdata/",
pattern = ".fcs$",
full.names = TRUE)){
for (file in files) {
ff <- FlowCore::read.FCS(file)
ff@parameters@data[,"desc"] <- gsub("#.*", "", ff@parameters@data[,"desc"] )
FlowCore::write.FCS(ff,
file)
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.