build_plate: Generates a csv or xlsx template for each plate type

View source: R/build_plate.R

build_plateR Documentation

Generates a csv or xlsx template for each plate type

Description

Generates a csv or xlsx template for each plate type

Usage

build_plate(
  plate_type = 6,
  n_plates = 1,
  file_type = c("csv", "xlsx"),
  plate_names = NULL,
  file = NULL
)

Arguments

plate_type

A specific integer (6, 12, 24, 48, 96, 384, 1536) indicating the type of microwell plate.

n_plates

A positive integer indicating the number of plates.

file_type

A character string ("csv" (the default) or "xlsx") indicating the filetype.

plate_names

A character vector of unique values that will be assigned to each plate. Its length should be equal to the value of n_plates.

file

A character string naming the file.

Value

A csv or xlsx template file.

Examples

## Not run: 
build_plate(plate_type = 6, n_plates = 2)
build_plate(plate_type = 6, n_plates = 2, file_type = "xlsx")

## End(Not run)

tidyplate documentation built on Oct. 9, 2024, 1:07 a.m.