microplate | R Documentation |
Quickly generate identifiers (with optional prefixes) for 96 and 384 well plates.
microplate(plates = 1L, wells = 96L, controls = 0L, prefix = NULL)
plates |
|
wells |
|
controls |
|
prefix |
|
These plate formats are frequently used for high-throughput screening assays.
character
.
Well identifiers.
Updated 2023-10-03.
## Single 96-well plate.
x <- microplate(wells = 96L)
print(head(x))
## 2 96-well plates.
x <- microplate(plates = 2L, wells = 96L)
print(head(x))
## Single 384-well plate.
x <- microplate(wells = 384L)
print(head(x))
## 2 96-well plates with 6 control wells per plate.
x <- microplate(plates = 2L, wells = 96L, controls = 6L)
print(head(x))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.