unanalyzed_clusters {ddpcr} | R Documentation |
Get the clusters that have not been considered yet in the analysis. This means the UNDEFINED cluster (since all droplets begin as UNDEFINED) and also all clusters that are defined later than the current cluster. The latter is to ensure that when re-running an analysis step, droplets that were analyzed in a later step will still be considered for analysis.
unanalyzed_clusters(plate, current)
plate |
A ddPCR plate |
current |
The current cluster ID, which is used to know what clusters come after |
All clusters that have not yet been analyzed
## Not run:
plate <- new_plate(sample_data_dir())
unanalyzed_clusters(plate, 3)
unanalyzed_clusters(plate, cluster(plate, "OUTLIER"))
plate %>% unanalyzed_clusters(cluster(plate, "OUTLIER")) %>% cluster_name(plate, .)
## End(Not run)