List of all wells in a specific column of a given plate type
Source:R/plate_format_functions.R
find_wells_in_column.Rd
List of all wells in a specific column of a given plate type
Arguments
- columns
number or list of numbers, representing column(s) such as
1
or12
. character strings also accepted.- plate_type
type of plate. numeric, i.e.
96
for 96-well 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"