Description Usage Arguments Value Examples
A convinience function that takes the results of the droplClust algorithm and exports them to a csv file.
1 | exportToCSV(data, directory, annotations, raw = FALSE)
|
data |
The result of the ddPCRclust algorithm |
directory |
The parent directory where the files should saved. A new folder with the experiment name will be created (see below). |
annotations |
Some basic metadata about the ddPCR reaction.
If you provided |
raw |
Boolean which determines if the annotated raw data should be exported along with the final counts. Basically, a third column will be added to the original data, which contains the cluster number to which this point was assigned to. Useful for example to visualize the clustering later on. (Warning: this can take a while!) |
None
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # Read files
exampleFiles <- list.files(paste0(find.package('ddPCRclust'), '/extdata'), full.names = TRUE)
files <- readFiles(exampleFiles[3])
# To read all example files uncomment the following line
# files <- readFiles(exampleFiles[1:8])
# Read template
template <- readTemplate(exampleFiles[9])
# Run ddPCRclust
result <- ddPCRclust(files, template)
# Export the results
dir.create('./Results')
exportToCSV(data = result, directory = './Results/', annotations = result$annotations)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.