microplate: Microtiter plate well identifiers

View source: R/microplate.R

microplateR Documentation

Microtiter plate well identifiers

Description

Quickly generate identifiers (with optional prefixes) for 96 and 384 well plates.

Usage

microplate(plates = 1L, wells = 96L, controls = 0L, prefix = NULL)

Arguments

plates

integer(1). Number of plates.

wells

integer(1). Number of wells (96, 384).

controls

integer(1). Number of control wells.

prefix

character(1) or NULL. Plate name prefix.

Details

These plate formats are frequently used for high-throughput screening assays.

Value

character. Well identifiers.

Note

Updated 2023-10-03.

Examples

## Single 96-well plate.
x <- microplate(wells = 96L)
print(head(x))

## 2 96-well plates.
x <- microplate(plates = 2L, wells = 96L)
print(head(x))

## Single 384-well plate.
x <- microplate(wells = 384L)
print(head(x))

## 2 96-well plates with 6 control wells per plate.
x <- microplate(plates = 2L, wells = 96L, controls = 6L)
print(head(x))

acidgenomics/r-acidexperiment documentation built on Jan. 17, 2024, 7:56 p.m.