extractReplicateValues: This function will takes a list of ranges removes case wells...

Description Usage Arguments Value Author(s) Examples

Description

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

Usage

1
2
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

Author(s)

Muhammad kashif

Examples

1
2
3
4
5
6
7
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 )

COMBIA documentation built on May 2, 2019, 7:23 a.m.