Browse code

cleaned up a few of the classes. defined new class called CNSet to take the place of CrlmmSet

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

Rob Scharp authored on 19/11/2009 14:59:04
Showing 1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,32 +0,0 @@
1
-\name{cnrma}
2
-\alias{cnrma}
3
-\title{Quantile normalizes the intensities for the nonpolymorphic probe
4
-  to a HapMap reference distribution.}
5
-\description{Quantile normalizes the intensities for the nonpolymorphic probe
6
-  to a HapMap reference distribution.
7
-}
8
-\usage{
9
-cnrma(filenames, cdfName, sns, seed = 1, verbose=FALSE)
10
-}
11
-\arguments{
12
-  \item{filenames}{filenames with complete path}
13
-  \item{cdfName}{Only 'genomewidesnp6' allowed}
14
-  \item{sns}{the sample names. If missing, the basename of the filenames is used.}
15
-  \item{seed}{seed for sampling the intensities to calculate skewness}
16
-  \item{verbose}{logical}
17
-}
18
-\value{
19
-  A list.  First element is the matrix of quantile-normalized
20
-  intensities.  The second element is the skew.
21
-}
22
-\author{Rob Scharpf}
23
-\note{Not tested}
24
-\examples{
25
-	library(genomewidesnp6Crlmm)
26
-	library(hapmapsnp6)
27
-	path <- system.file("celFiles", package="hapmapsnp6")
28
-	celFiles <- list.celfiles(path, full.names=TRUE)
29
-	cnrmaResult <- cnrma(celFiles, cdfName="genomewidesnp6")
30
-}
31
-\keyword{robust}
32
-
Browse code

changes to crlmmWrapper. updated vignettes in inst/scripts.

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

Rob Scharp authored on 04/10/2009 02:37:32
Showing 1 changed files
... ...
@@ -6,7 +6,7 @@
6 6
   to a HapMap reference distribution.
7 7
 }
8 8
 \usage{
9
-cnrma(filenames, cdfName="genomewidesnp6", sns, seed = 1, verbose=FALSE)
9
+cnrma(filenames, cdfName, sns, seed = 1, verbose=FALSE)
10 10
 }
11 11
 \arguments{
12 12
   \item{filenames}{filenames with complete path}
Browse code

updated cnrma function and the copy number vignette

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

Rob Scharp authored on 29/03/2009 19:59:40
Showing 1 changed files
... ...
@@ -6,12 +6,12 @@
6 6
   to a HapMap reference distribution.
7 7
 }
8 8
 \usage{
9
-cnrma(filenames, sns, cdfName, seed = 1, verbose=FALSE)
9
+cnrma(filenames, cdfName="genomewidesnp6", sns, seed = 1, verbose=FALSE)
10 10
 }
11 11
 \arguments{
12 12
   \item{filenames}{filenames with complete path}
13
+  \item{cdfName}{Only 'genomewidesnp6' allowed}
13 14
   \item{sns}{the sample names. If missing, the basename of the filenames is used.}
14
-  \item{cdfName}{Should be 'genomewidesnp6Crlmm'}
15 15
   \item{seed}{seed for sampling the intensities to calculate skewness}
16 16
   \item{verbose}{logical}
17 17
 }
... ...
@@ -22,13 +22,11 @@ cnrma(filenames, sns, cdfName, seed = 1, verbose=FALSE)
22 22
 \author{Rob Scharpf}
23 23
 \note{Not tested}
24 24
 \examples{
25
-	\dontrun{
26
-		library(genomewidesnp6Crlmm)
27
-		library(hapmapsnp6)
28
-		path <- system.file("celFiles", package="hapmapsnp6")
29
-		celFiles <- list.celfiles(path, full.names=TRUE)
30
-		cnrmaResult <- cnrma(celFiles)
31
-	}
25
+	library(genomewidesnp6Crlmm)
26
+	library(hapmapsnp6)
27
+	path <- system.file("celFiles", package="hapmapsnp6")
28
+	celFiles <- list.celfiles(path, full.names=TRUE)
29
+	cnrmaResult <- cnrma(celFiles, cdfName="genomewidesnp6")
32 30
 }
33 31
 \keyword{robust}
34 32
 
Browse code

prep'ing to submit to peer review

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

Benilton Carvalho authored on 09/03/2009 00:19:46
Showing 1 changed files
... ...
@@ -15,8 +15,6 @@ cnrma(filenames, sns, cdfName, seed = 1, verbose=FALSE)
15 15
   \item{seed}{seed for sampling the intensities to calculate skewness}
16 16
   \item{verbose}{logical}
17 17
 }
18
-\details{
19
-}
20 18
 \value{
21 19
   A list.  First element is the matrix of quantile-normalized
22 20
   intensities.  The second element is the skew.
... ...
@@ -27,7 +25,7 @@ cnrma(filenames, sns, cdfName, seed = 1, verbose=FALSE)
27 25
 	\dontrun{
28 26
 		library(genomewidesnp6Crlmm)
29 27
 		library(hapmapsnp6)
30
-		path <- system.file("celFiles", package="hapmapsnp5")
28
+		path <- system.file("celFiles", package="hapmapsnp6")
31 29
 		celFiles <- list.celfiles(path, full.names=TRUE)
32 30
 		cnrmaResult <- cnrma(celFiles)
33 31
 	}
Browse code

fixed bug in cnrma

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

Rob Scharp authored on 03/03/2009 21:19:51
Showing 1 changed files
... ...
@@ -2,7 +2,8 @@
2 2
 \alias{cnrma}
3 3
 \title{Quantile normalizes the intensities for the nonpolymorphic probe
4 4
   to a HapMap reference distribution.}
5
-\description{
5
+\description{Quantile normalizes the intensities for the nonpolymorphic probe
6
+  to a HapMap reference distribution.
6 7
 }
7 8
 \usage{
8 9
 cnrma(filenames, sns, cdfName, seed = 1, verbose=FALSE)
... ...
@@ -12,6 +13,7 @@ cnrma(filenames, sns, cdfName, seed = 1, verbose=FALSE)
12 13
   \item{sns}{the sample names. If missing, the basename of the filenames is used.}
13 14
   \item{cdfName}{Should be 'genomewidesnp6Crlmm'}
14 15
   \item{seed}{seed for sampling the intensities to calculate skewness}
16
+  \item{verbose}{logical}
15 17
 }
16 18
 \details{
17 19
 }
... ...
@@ -21,7 +23,6 @@ cnrma(filenames, sns, cdfName, seed = 1, verbose=FALSE)
21 23
 }
22 24
 \author{Rob Scharpf}
23 25
 \note{Not tested}
24
-\seealso{\code{\link{snprma}}}
25 26
 \examples{
26 27
 	\dontrun{
27 28
 		library(genomewidesnp6Crlmm)
Browse code

fixed bug in cnrma man file

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

Rob Scharp authored on 03/03/2009 20:53:57
Showing 1 changed files
... ...
@@ -21,9 +21,10 @@ cnrma(filenames, sns, cdfName, seed = 1, verbose=FALSE)
21 21
 }
22 22
 \author{Rob Scharpf}
23 23
 \note{Not tested}
24
-\seealso{}
24
+\seealso{\code{\link{snprma}}}
25 25
 \examples{
26 26
 	\dontrun{
27
+		library(genomewidesnp6Crlmm)
27 28
 		library(hapmapsnp6)
28 29
 		path <- system.file("celFiles", package="hapmapsnp5")
29 30
 		celFiles <- list.celfiles(path, full.names=TRUE)
Browse code

added verbose argument to cnrma. added man pages for computeCopynumber and cnrma

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

Rob Scharp authored on 03/03/2009 14:32:33
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,34 @@
1
+\name{cnrma}
2
+\alias{cnrma}
3
+\title{Quantile normalizes the intensities for the nonpolymorphic probe
4
+  to a HapMap reference distribution.}
5
+\description{
6
+}
7
+\usage{
8
+cnrma(filenames, sns, cdfName, seed = 1, verbose=FALSE)
9
+}
10
+\arguments{
11
+  \item{filenames}{filenames with complete path}
12
+  \item{sns}{the sample names. If missing, the basename of the filenames is used.}
13
+  \item{cdfName}{Should be 'genomewidesnp6Crlmm'}
14
+  \item{seed}{seed for sampling the intensities to calculate skewness}
15
+}
16
+\details{
17
+}
18
+\value{
19
+  A list.  First element is the matrix of quantile-normalized
20
+  intensities.  The second element is the skew.
21
+}
22
+\author{Rob Scharpf}
23
+\note{Not tested}
24
+\seealso{}
25
+\examples{
26
+	\dontrun{
27
+		library(hapmapsnp6)
28
+		path <- system.file("celFiles", package="hapmapsnp5")
29
+		celFiles <- list.celfiles(path, full.names=TRUE)
30
+		cnrmaResult <- cnrma(celFiles)
31
+	}
32
+}
33
+\keyword{robust}
34
+