List of all wells in a specific row of a given plate type
Source:R/plate_format_functions.R
find_wells_in_row.Rd
List of all wells in a specific row of a given plate type
Arguments
- rows
character string, or list of character strings, representing row(s) such as "A" or "H"
- plate_type
type of plate. numeric, i.e.
96
for 96-well plate.
Examples
find_wells_in_row("A")
#> [1] "A1" "A2" "A3" "A4" "A5" "A6" "A7" "A8" "A9" "A10" "A11" "A12"
find_wells_in_row(c("A","D"), plate_type = 24)
#> [1] "A1" "A2" "A3" "A4" "A5" "A6" "D1" "D2" "D3" "D4" "D5" "D6"