library(knitr) knitr::opts_chunk$set(warning = FALSE, message = FALSE) library(kableExtra)
library(flowCore) library(flowWorkspace) library(cytoqc) # devtools::load_all()
path <- "~/remote/fh/fast/gottardo_r/mike_working/lyoplate_out/parsed" centers <- c('BIIR','CIMR','Miami','NHLBI','Stanford','UCLA','Yale')
panel <- "DC" gslist <- sapply(centers, function(center) { message("Center: ", center) gs <- load_gs(file.path(path, center, panel), select = 1) })
cqc_data <- cqc_gs_list(gslist) check_res <- cqc_check(cqc_data, "marker") check_res
match_res <- cqc_match(check_res, ref = 7) match_res
cqc_fix(match_res) cqc_check(cqc_data, "marker")
res <- cqc_check(cqc_data, "panel", by = "marker") res
res <- cqc_match(res, ref = 2) res cqc_fix(res) cqc_check(cqc_data, "panel")
res <- cqc_check(cqc_data, "gate") res diff(res) match_res <- cqc_match(res, ref = 2) match_res
cqc_fix(match_res)
res <- cqc_check(cqc_data, "channel") res match_res <- cqc_match(res, ref = 4) match_res
cqc_fix(match_res)
gs <- merge_list_to_gs(gslist) gs
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.