NanoStringQC {nanostringr} | R Documentation |
QC metrics for NanoString Data
Description
Computes and returns NanoString quality control metrics and flags.
Usage
NanoStringQC(raw, exp, detect = 80, sn = 150)
Arguments
raw |
data frame of raw counts obtained from nCounter (rows represent
genes, columns represent samples). The first three columns must be labeled:
|
exp |
data frame of annotations with rows in the same order as the
columns of |
detect |
threshold of percentage of genes expressed over limit of detection (LOD) that we would like to detect (not decimal), defaults to 80 percent. |
sn |
signal to noise ratio of the housekeeping genes we are willing to tolerate, defaults to 150. |
Value
data frame of annotations updated with normalization parameters
Author(s)
Aline Talhouk, Derek Chiu
Examples
exp.OVD <- subset(expQC, OVD == "Yes")
expOVD <- NanoStringQC(ovd.r, exp.OVD)