Skip to contents

Given a well object, tells in which row the well is.

Given a well object, tells in which column the well is.

Usage

# S4 method for Well
as.character(x)

# S4 method for Well
show(object)

Row(object)

# S4 method for Well
Row(object)

Column(object)

# S4 method for Well
Column(object)

Arguments

x

a Well object

object

The Well object from which column coordinates are extracted.

Value

A row name in character format.

A column name in character format

Examples

well <- Well(well = "A01", plateFormat = "384")
Row(well)
#> [1] "A"

well <- Well("A01")
Column(well)
#> [1] "01"