Skip to content

Instantly share code, notes, and snippets.

View xiamaz's full-sized avatar
🚩
Semaphoring

Max Xiaohang Zhao xiamaz

🚩
Semaphoring
View GitHub Profile
@xiamaz
xiamaz / createFlowFrame.R
Created November 3, 2017 14:45 — forked from yannabraham/createFlowFrame.R
A quick way to create FCS files from CSV
library(Biobase)
library(flowCore)
library(flowViz)
# simply replace the dummy dta below with your CSV data
dta <- matrix(rnorm(10000),ncol=10)
dimnames(dta)[[2]] <- LETTERS[1:10]
head(dta)