Skip to contents

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

Usage

find_wells_in_column(columns, plate_type = 96)

Arguments

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 the specified column(s) of a specified plate

Examples

 find_wells_in_column("1")
#> [1] "A1" "B1" "C1" "D1" "E1" "F1" "G1" "H1"
 find_wells_in_column("12")
#> [1] "A12" "B12" "C12" "D12" "E12" "F12" "G12" "H12"
 find_wells_in_column(1)
#> [1] "A1" "B1" "C1" "D1" "E1" "F1" "G1" "H1"
 find_wells_in_column(c(1,3), plate_type = 6)
#> [1] "A1" "A3" "B1" "B3"