convert_large_to_small: Convert data of large plateformat to small plateformat

Description Usage Arguments Details Value Examples

Description

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

Usage

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

Arguments

plate_from

An integer of large plateformat

plate_to

An integer of small 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

Details

Always convert the plateformat one step at a time. For example 1536 to 384 but not from 1536 to 96 plateformat

Value

dataframe of converted data from large plateformat plate_from to small 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_384 <- convert_large_to_small(plate_from = 1536,
                                   plate_to = 384,
                                   data_from = 1:1536,
                                   in_data_flow = 'down',
                                   out_data_flow = 'down',
                                   is_plate_coords = TRUE)
head(down_384)

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