* collab:
bump version
made cnSetExample smaller. Fix notes
Trying to revert bad commit
remove cn-functions. update description
comment most of cn-functions.r
Resaved rdas
update data/cnSetExample.rda and data/cnSetExample2.rda
bump version
coercion method from CNSet to oligoSnpSet makes integer matrices of BAFs and lrr's
import ff_or_matrix from oligoClasses. bump dependency on oligoClasses version. Use library(oligoClasses) in some of the crlmm examples.
Cleaning pkg loading process: work still required
move Biobase and methods to imports
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/crlmm@64324 bc3139a8-67e5-0310-9ffc-ced21a209358
* 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
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,41 @@ |
1 |
+\name{validCEL} |
|
2 |
+\alias{celDates} |
|
3 |
+\alias{validCEL} |
|
4 |
+\title{ |
|
5 |
+ Reads cel files and return an error if a file is not read |
|
6 |
+} |
|
7 |
+\description{ |
|
8 |
+ Reads cel files and return an error if a file is not read |
|
9 |
+} |
|
10 |
+\usage{ |
|
11 |
+validCEL(celfiles) |
|
12 |
+celDates(celfiles) |
|
13 |
+} |
|
14 |
+\arguments{ |
|
15 |
+ \item{celfiles}{ |
|
16 |
+ vector of cel file names to read |
|
17 |
+} |
|
18 |
+} |
|
19 |
+\value{ |
|
20 |
+ Returns a message that cel files were successfully read, or an error |
|
21 |
+ if there were problems reading the cel files. |
|
22 |
+} |
|
23 |
+ |
|
24 |
+\author{ |
|
25 |
+R. Scharpf |
|
26 |
+} |
|
27 |
+ |
|
28 |
+\seealso{ \cite{\link[affyio]{read.celfile.header}}, |
|
29 |
+ \cite{\link{POSIXt}}, |
|
30 |
+ \code{\link{read.celfile}} |
|
31 |
+} |
|
32 |
+ |
|
33 |
+\examples{ |
|
34 |
+if(require(hapmapsnp6)){ |
|
35 |
+ path <- system.file("celFiles", package="hapmapsnp6") |
|
36 |
+ cels <- list.celfiles(path, full.names=TRUE) |
|
37 |
+ validCEL(cels) |
|
38 |
+ celDates(cels) |
|
39 |
+} |
|
40 |
+} |
|
41 |
+\keyword{IO} |
|
0 | 42 |
\ No newline at end of file |