R/getRowColumn.R

#' Converts well ids to row and column
#' @title Convert well ids to row and column
#' @param wellId vector of well ids
#' @return vector of lists containing row and column
#' @author Andreas Neudecker
#' @export
#' @examples
#' getRowColumn(c("A01","B05"))
getRowColumn = function ( wellId )
{
	row=factor(substr(wellId,1,1))
	column=as.integer(substr(wellId,2,3))
	return(list(row=row,column=column))
}

Try the cellGrowth package in your browser

Any scripts or data that you put into this service are public.

cellGrowth documentation built on Oct. 31, 2019, 8:38 a.m.