-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwriteWide.Rd
49 lines (41 loc) · 1.63 KB
/
writeWide.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/writeWide.R
\docType{methods}
\name{writeWide}
\alias{writeWide}
\alias{writeWide,ScreenDesign-method}
\title{Write out a data frame-like object in a wide format}
\usage{
writeWide(object, ...)
\S4method{writeWide}{ScreenDesign}(object, file = "", blank = "blank",
untreated = "untreated", nothing = "NULL", ...)
}
\arguments{
\item{object}{a ScreenDesign object}
\item{...}{other parameters to pass to write.table}
\item{file}{either a character string naming a file or a connection open for writing. "" indicates output to the console.}
\item{blank}{string to use for blank wells}
\item{untreated}{string to use for untreated control wells, e.g. the name of the growth medium}
\item{nothing}{string to use in cases where nothing should be added to a well}
}
\description{
Write out a data frame-like object in a wide format
}
\details{
A ScreenDesign object is a data frame in a "long" format. This function converts it to wide, e.g. 8X12 for a 96 well plate,
then writes it out to a file in CSV format
}
\section{Methods (by class)}{
\itemize{
\item \code{ScreenDesign}: Write out screen design data in a wide format
}}
\examples{
compounds = readCompoundFile(system.file("extdata/8_compounds/8_compounds.csv",
package="SynergyScreen"))
screen = new("SynergyScreen", compound_list=compounds)
screen = generateDesign(screen, type="12 doses exp")
writeWide(design(screen), file="8_compounds_design_wide.csv")
}
\seealso{
\code{\linkS4class{ScreenDesign}}, \code{\link[utils]{write.table}}
}