Description Usage Arguments Value Examples
Removing Gd contamination in CyTOF data.
1 |
fs |
The flowSet object of contaminated CyTOF files. |
gdRatio |
The selected intensity ratios across Gd channels, default with natural Gd isotope abundance ratios |
method |
The method used for calculating contamination coefficients for each cell, default with '1DNorm', available options are '1DNorm','2DNorm','Min','Mean','Median' |
The flowSet object of cleaned CyTOF files.
1 2 3 4 5 6 7 8 9 10 11 12 13 | library(GdClean)
fcs.dir <- "../fcsData/"
frames <- lapply(dir(fcs.dir, full.names = T), read.FCS, transformation = F, alter.names = T)
names(frames) <- basename(dir(fcs.dir))
fs <- as(frames, "flowSet")
PercentList <- seq(5, 100, 5)
GdRatios <- estimateGdRatio(ff[[1]], percentList)
gdRatio <- GdRatios["5%", ]
method <- "1DNorm"
fs_Clean <- GdClean(fs, gdRatio = gdRatio, method = method)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.