You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to use the community clustering (by vite) to make a set of landmark files for a second map. I could not find the community id in the rds data generated by vite. Is it possible to generate fcs files with this information?
Hi,
I want to use the community clustering (by vite) to make a set of landmark files for a second map. I could not find the community id in the rds data generated by vite. Is it possible to generate fcs files with this information?
I used the following code to make the fcs files;
rdsfilelist <- list.files("path-to-data/",
full.names = TRUE)
for (i in 1:length(rdsfilelist)){
tempdata <- readRDS(rdsfilelist[i])
data <- rbind(data, tempdata)
}
flow.frame <- as_flowFrame(as.matrix(data))
write_flowFrame(flow.frame, "you_file.fcs")
The text was updated successfully, but these errors were encountered: