tabulateFlowHist | R Documentation |
Extract analysis results from a FlowHist object
tabulateFlowHist(fh, file = NULL)
fh |
a |
file |
character, the name of the file to save data to |
A convenience function for extracting the results of the NLS curve-fitting analysis on a FlowHist object.
If fh
is a single FlowHist object, a data.frame with a single row
is returned. If fh
is a list of FlowHist
objects, a
row for each object will be added to the data.frame.
If a file name is provided, the data will be saved to that file.
The columns of the returned data.frame may include:
which peak (A, B etc) was identified by the user as the internal standard
the ratio of the sample peak size to the standard peak size, if the standard size was set and the standard peak identified
the size of the standard in pg, if set
genome size estimate, if the sample peak was identified and the size of the standard was set
the residual Chi-Square for the model fit
the peak position for the G1 peak of each sample
standard devation for each G1 peak position
the cell counts for the G1 peak of each sample
the cell counts for the G2 peak of each sample
the cell counts for the S-phase for each sample
the coefficient of variation for each sample
the linearity value, if not fixed at 2
Note that columns are only produced for parameters that exist in your data. That is, if none of your samples have a G2 peak for the A sample, you won't get a2_count column. Similarly, if you didn't set the standard size, or identify which peak was the standard, you won't get StdPeak, ratio, StdSize, or pg columns.
a data frame
Tyler Smith
library(flowPloidyData)
fh1 <- FlowHist(file = flowPloidyFiles()[1], channel = "FL3.INT.LIN")
fh1 <- fhAnalyze(fh1)
tabulateFlowHist(fh1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.