Skip to contents

List of all wells in specific rows and columns of a given plate type

Usage

find_wells_in_rowcolumn(rows, columns, plate_type = 96)

Arguments

rows

character string, or list of character strings, representing row(s) such as "A" or "H"

columns

number or list of numbers, representing column(s) such as 1 or 12. character strings also accepted.

plate_type

type of plate. numeric, i.e. 96 for 96-well plate.

Value

a list containing the names of all the wells in specified row(s) and column(s) of a specified plate

Examples

 find_wells_in_rowcolumn(c("A","C"), c(2,3))
#> [1] "A2" "A3" "C2" "C3"
 find_wells_in_rowcolumn(c("A","C"), c(2,3), plate_type = 24)
#> [1] "A2" "A3" "C2" "C3"