Skip to contents

MoveSamples() can be used to move existing wetlab samples from:

  1. Between two (or more) existing containers

  2. From one (or more) existing container into one (or more) existing container

Usage

MoveSamples(sample_type, move_data)

Arguments

sample_type

A string specifying the type of samples that are being moved. Options include: micronix, cryovial, rdt and paper

move_data

A list of SampleDB move dataframes, where the name of each dataframe item is the container that the samples are in after the move.

Examples

if (FALSE) { # \dontrun{
move_data <- list("move_csv1_container_name" = dataframe(), "move_csv2_container_name" = dataframe())
MoveSamples(sample_type = "micronix", move_data = move_data)
} # }