Skip to contents

List of all wells in a specific row of a given plate type

Usage

find_wells_in_row(rows, plate_type = 96)

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.

Value

a list containing the names of all the wells in the specified row(s) of a specified 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"