well_to_index | R Documentation |
Indexes along rows first, so A12 is index 12 and B01 is index 13 for a 96 well plate.
well_to_index(x, plate = 96, colwise = FALSE)
x |
string well ID |
plate |
size of the plate. One of c(6, 12, 24, 96, 384) |
colwise |
if TRUE, index instead down the columns, so H01 is index 8, A12 is index 89 and B01 is index 2 for a 96 well plate. |
numeric well index.
# indexing along the row first
well_to_index(c("A10", "c3", "h12"))
well_to_index("H08")
well_to_index("h8")
well_to_index("C20")
# indexing instead down the column first
well_to_index(c("A10", "c3", "h12"), colwise = TRUE)
well_to_index("H08", colwise = TRUE)
well_to_index("h8", colwise = TRUE)
well_to_index("C20", colwise = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.