Browse code

Merge branch 'mymac'

* mymac:
add AffyGW.pdf
update vignettes in inst/scripts
Change argument of validCEL to celfiles
Update constructInf to accommodate GenomeDataFrame class for featureData
bump version to 1.13.7
Add doRUnit.R
Add celfile-utils.Rd
Streamlne some of the Rd files
add validCEL function that checks whether all celfiles can be read
getFeatureData returns GenomeAnnotatedDataFrame
Remove imports from methods. Remove pdf of illumina_copynumber.pdf (large file) and copynumber.pdf
getFeatureDAta returns GenomeAnnotatedDataFrame
Remove separate vignette for copy number in inst/scripts. Include copynumber section in both affy and illumina pipelines.
update documentation files for genotype.Illumina, preprocessInf, and genotypeInf (cdfName added as argument. Indicate that 'batch' should be a character string)
pass cdfName to genotypeInf and preprocessInf
add unitTests and cn-functions for 'simple usage'
Combine AffyPreprocess and copynumber. Combine IlluminaPreprocess and copynumber
remove depency on ff to allow installation on my mac

git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/crlmm@62108 bc3139a8-67e5-0310-9ffc-ced21a209358

Rob Scharp authored on 17/01/2012 19:13:44
Showing 1 changed files
... ...
@@ -35,9 +35,7 @@ ABpanel(x, y, predictRegion, copyNumber = 0:4, fill, ..., subscripts)
35 35
     See \code{xyplot} in the \pkg{lattice} package.
36 36
 }
37 37
 }
38
-\details{
39
-%%  ~~ If necessary, more details than the description above ~~
40
-}
38
+
41 39
 \value{
42 40
   Not applicable
43 41
 }
Browse code

Change \code{\lpolygon} -> \code{lpolygon}

git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/crlmm@58644 bc3139a8-67e5-0310-9ffc-ced21a209358

Rob Scharp authored on 01/10/2011 04:48:25
Showing 1 changed files
... ...
@@ -29,7 +29,7 @@ ABpanel(x, y, predictRegion, copyNumber = 0:4, fill, ..., subscripts)
29 29
     certain point symbols.  See \code{points}.
30 30
 }
31 31
   \item{\dots}{
32
-    Additional arguments to \code{panel.xyplot} and \code{\lpolygon}.
32
+    Additional arguments to \code{panel.xyplot} and \code{lpolygon}.
33 33
 }
34 34
   \item{subscripts}{
35 35
     See \code{xyplot} in the \pkg{lattice} package.
Browse code

Add ABpanel help file and add fill argument

git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/crlmm@58638 bc3139a8-67e5-0310-9ffc-ced21a209358

Rob Scharp authored on 01/10/2011 04:47:42
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,64 @@
1
+\name{ABpanel}
2
+\alias{ABpanel}
3
+\title{A panel function for plotting prediction regions and
4
+  log-normalized intensities
5
+}
6
+\description{
7
+  A panel function for plotting prediction regions and
8
+  log-normalized intensities
9
+}
10
+\usage{
11
+ABpanel(x, y, predictRegion, copyNumber = 0:4, fill, ..., subscripts)
12
+}
13
+%- maybe also 'usage' for other objects documented here.
14
+\arguments{
15
+  \item{x}{
16
+    log-normalized intensities for the A or B allele
17
+}
18
+\item{y}{
19
+      log-normalized intensities for the A or B allele
20
+}
21
+  \item{predictRegion}{
22
+    A \code{list}. See \code{predictionRegion}.
23
+}
24
+  \item{copyNumber}{
25
+    Integer vector.  Indicates which prediction regions are drawn.
26
+}
27
+  \item{fill}{
28
+    Character or integer vector for coloring the points.  Only valid for
29
+    certain point symbols.  See \code{points}.
30
+}
31
+  \item{\dots}{
32
+    Additional arguments to \code{panel.xyplot} and \code{\lpolygon}.
33
+}
34
+  \item{subscripts}{
35
+    See \code{xyplot} in the \pkg{lattice} package.
36
+}
37
+}
38
+\details{
39
+%%  ~~ If necessary, more details than the description above ~~
40
+}
41
+\value{
42
+  Not applicable
43
+}
44
+
45
+\note{
46
+
47
+  \code{ABpanel} can be passed as the argument to panel in the
48
+  \code{xyplot} method for \code{CNSet} objects.  See the examples in
49
+  \code{xyplot}.
50
+
51
+}
52
+
53
+\author{
54
+R. Scharpf
55
+}
56
+
57
+\seealso{
58
+  \code{\link[lattice]{xyplot}},   \code{\link[lattice]{panel.xyplot}}
59
+  \code{\link[lattice]{lpolygon}}
60
+}
61
+
62
+% Add one or more standard keywords, see file 'KEYWORDS' in the
63
+% R documentation directory.
64
+\keyword{aplot}
0 65
\ No newline at end of file