convert_small_to_large: Convert data of small plateformat to large plateformat

Description Usage Arguments Value Examples

Description

Convert data of small plateformat plate_from to large plateformat plate_to by expanding the four replicates into large plateformat plate_to

Usage

1
2
convert_small_to_large(plate_from, plate_to, data_from, in_data_flow,
  out_data_flow, is_plate_coords)

Arguments

plate_from

An integer of small plateformat

plate_to

An integer of large plateformat

data_from

vector of data for conversion

in_data_flow

A string indicating the plate format of data_from. It can take a value either across or down.

out_data_flow

A string which tells the function to output the converted data to a plate configuration which can be down or across

is_plate_coords

logical returns plate coordinates, if its value is TRUE

Value

dataframe of converted data from small plateformat plate_from to large plateformat plate_to. If is_plate_coords = TRUE, then it returns the plate coordinates along with the converted data.

Examples

1
2
3
4
5
6
7
down_1536 <- convert_small_to_large(plate_from = 384,
                                    plate_to = 1536,
                                    data_from = 1:384,
                                    in_data_flow = 'down',
                                    out_data_flow = 'down',
                                    is_plate_coords = TRUE)
head(down_1536)

sathishsrinivasank/pinerrordetector documentation built on May 7, 2019, 2:55 a.m.