Learn R Programming

COMBIA (version 1.0.6)

extractReplicateValues: This function will takes a list of ranges removes case wells and extract replicate values separately

Description

This function will takes a list of ranges removes case wells and extract replicate values separately

Usage

extractReplicateValues(rawDataUnProcessed, wellRanges, wellplace = 3,
  simple = FALSE, excelFormate = FALSE)

Arguments

rawDataUnProcessed

A data matrix

wellRanges

Ranges of wells

wellplace

Place of treated (case) well range

simple

TRUE if survival values are already calculated otherwise it is FALSE

excelFormate

True if ranges are in excel formate

Value

Replicate values

Examples

Run this code
# NOT RUN {
dataFile <- system.file("extdata", "testData.csv", package="COMBIA")
rData <- read.csv( dataFile, skip=0, sep=",", nrows=41, 
                    fill=TRUE, header=FALSE,
                    blank.lines.skip = FALSE)[,1:13]
wellR= c( "l3:l10","m3:m10","b3:k10",  "l13:l20","m13:m20","b13:k20", 
            "l23:l30","m23:m30","b23:k30",  "l33:l40","m33:m40","b33:k40")
rslt <-  extractReplicateValues(rData, wellR, excelFormate=TRUE )
# }

Run the code above in your browser using DataLab