Browse code

merge collab branch

* collab:
update vignettes/Makefile
update .gitignore
update table in CopyNumberViewiew
bump dependency on oligoClasses version
Update alias for "[" method for PredictionRegion objects
Replaced CopyNumberOverview and Infrastructure vignettes with those in the release branch. The versions in release have removed AffymetrixPreprocessCN, which is no longer available

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

Rob Scharp authored on 19/11/2012 04:49:34
Showing 1 changed files
... ...
@@ -2,7 +2,7 @@
2 2
 \Rdversion{1.1}
3 3
 \docType{class}
4 4
 \alias{PredictionRegion-class}
5
-\alias{[,PredictionRegion-method}
5
+\alias{[,PredictionRegion,ANY,ANY,ANY-method}
6 6
 
7 7
 \title{Class \code{"PredictionRegion"}}
8 8
 \description{
Browse code

Add PredictionRegion class that contains 'list'. Export in NAMESPACE. predictionRegion returns PredictionRegion class.

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

Rob Scharp authored on 01/10/2011 04:49:20
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,45 @@
1
+\name{PredictionRegion-class}
2
+\Rdversion{1.1}
3
+\docType{class}
4
+\alias{PredictionRegion-class}
5
+\alias{[,PredictionRegion-method}
6
+
7
+\title{Class \code{"PredictionRegion"}}
8
+\description{
9
+  A container for bivariate normal prediction regions for SNP data and
10
+  univarite prediction regions for nonpolymorphic markers.
11
+}
12
+\section{Objects from the Class}{
13
+  Objects from the class are created from the \code{predictionRegion} function.
14
+}
15
+\section{Slots}{
16
+  \describe{
17
+    \item{\code{.Data}:}{Object of class \code{"list"} ~~ }
18
+  }
19
+}
20
+\section{Extends}{
21
+Class \code{"\linkS4class{list}"}, from data part.
22
+Class \code{"\linkS4class{vector}"}, by class "list", distance 2.
23
+Class \code{"\linkS4class{AssayData}"}, by class "list", distance 2.
24
+Class \code{"\linkS4class{list_or_ffdf}"}, by class "list", distance 2.
25
+Class \code{vectorORfactor}, by class "list", distance 3.
26
+}
27
+\section{Methods}{
28
+  \describe{
29
+    \item{[}{\code{signature(x = "PredictionRegion")}: ... } Prediction
30
+    regions can be subset by markers.
31
+	 }
32
+}
33
+
34
+\author{
35
+R. Scharpf
36
+}
37
+
38
+
39
+\seealso{
40
+\code{\link{predictionRegion}}
41
+}
42
+\examples{
43
+showClass("PredictionRegion")
44
+}
45
+\keyword{classes}