git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/crlmm@43012 bc3139a8-67e5-0310-9ffc-ced21a209358
... | ... |
@@ -319,4 +319,10 @@ is decoded and scanned |
319 | 319 |
- ABset and CrlmmSetList classes are gone. Using SnpCallSetPlus and CrlmmSet |
320 | 320 |
- Added class SegmentSet that extends CrlmmSet directly. |
321 | 321 |
|
322 |
+2009-11-15 B Carvalho - committed version 1.5.4 |
|
323 |
+ |
|
324 |
+ * removed references to old C code |
|
325 |
+ * added the missing files to the Collate field |
|
326 |
+ * fixed classes imported from oligoClasses in NAMESPACE |
|
327 |
+ * imported 'calls<-' from oligoClasses |
|
322 | 328 |
|
... | ... |
@@ -1,7 +1,7 @@ |
1 | 1 |
Package: crlmm |
2 | 2 |
Type: Package |
3 | 3 |
Title: Genotype Calling (CRLMM) and Copy Number Analysis tool for Affymetrix SNP 5.0 and 6.0 and Illumina arrays. |
4 |
-Version: 1.5.3 |
|
4 |
+Version: 1.5.4 |
|
5 | 5 |
Date: 2009-11-15 |
6 | 6 |
Author: Rafael A Irizarry, Benilton S Carvalho <bcarvalh@jhsph.edu>, Robert Scharpf <rscharpf@jhsph.edu>, Matt Ritchie <mritchie@wehi.EDU.AU> |
7 | 7 |
Maintainer: Benilton S Carvalho <bcarvalh@jhsph.edu>, Robert Scharpf <rscharpf@jhsph.edu>, Matt Ritchie <mritchie@wehi.EDU.AU> |
... | ... |
@@ -12,11 +12,14 @@ Imports: affyio, preprocessCore, utils, stats, genefilter, splines, mvtnorm, oli |
12 | 12 |
Suggests: hapmapsnp5, hapmapsnp6, genomewidesnp5Crlmm (>= 1.0.2),genomewidesnp6Crlmm (>= 1.0.2), snpMatrix, GGdata |
13 | 13 |
Collate: AllClasses.R |
14 | 14 |
AllGenerics.R |
15 |
- methods-ABset.R |
|
16 | 15 |
methods-CopyNumberSet.R |
17 |
- methods-CrlmmSetList.R |
|
16 |
+ methods-CrlmmSet.R |
|
17 |
+ methods-CrlmmSetFF.R |
|
18 | 18 |
methods-eSet.R |
19 |
+ methods-SnpCallSetPlus.R |
|
20 |
+ methods-SnpCallSetPlusFF.R |
|
19 | 21 |
methods-SnpSet.R |
22 |
+ methods-SnpQSet.R |
|
20 | 23 |
cnrma-functions.R |
21 | 24 |
crlmm-functions.R |
22 | 25 |
crlmm-illumina.R |
... | ... |
@@ -5,7 +5,7 @@ useDynLib("crlmm", .registration=TRUE) |
5 | 5 |
importClassesFrom(Biobase, AnnotatedDataFrame, AssayData, eSet, |
6 | 6 |
SnpSet, NChannelSet, MIAME, Versioned, VersionedBiobase, Versions) |
7 | 7 |
|
8 |
-importClassesFrom(oligoClasses, SnpLevelSet) |
|
8 |
+importClassesFrom(oligoClasses, SnpLevelSet, SnpQSet, SnpCallSet, SnpCallSetPlus, QuantificationSet) |
|
9 | 9 |
|
10 | 10 |
importMethodsFrom(Biobase, annotation, "annotation<-", annotatedDataFrameFrom, |
11 | 11 |
assayData, "assayData<-", combine, dims, |
... | ... |
@@ -16,9 +16,7 @@ importMethodsFrom(Biobase, annotation, "annotation<-", annotatedDataFrameFrom, |
16 | 16 |
pubMedIds, rowMedians, sampleNames, |
17 | 17 |
storageMode, "storageMode<-", updateObject, varLabels) |
18 | 18 |
|
19 |
- |
|
20 |
-##importMethodsFrom(oligoClasses, chromosome, copyNumber, position) |
|
21 |
-importMethodsFrom(oligoClasses, chromosome, copyNumber, position, calls) |
|
19 |
+importMethodsFrom(oligoClasses, chromosome, copyNumber, position, calls, "calls<-") |
|
22 | 20 |
|
23 | 21 |
##importMethodsFrom(methods, initialize, show) |
24 | 22 |
|
... | ... |
@@ -3,20 +3,11 @@ |
3 | 3 |
#include "crlmm.h" |
4 | 4 |
|
5 | 5 |
static const R_CallMethodDef CallEntries[] = { |
6 |
- {"test", (DL_FUNC)&test, 1}, |
|
7 |
- {"gtypeCallerPart1nm", (DL_FUNC)>ypeCallerPart1nm, 17}, |
|
8 |
- {"gtypeCallerPart2nm", (DL_FUNC)>ypeCallerPart2nm, 19}, |
|
9 |
- {"gtypeCallerPart1NormalNoN", (DL_FUNC)>ypeCallerPart1NormalNoN, 17}, |
|
10 | 6 |
{"gtypeCallerPart1", (DL_FUNC)>ypeCallerPart1, 17}, |
11 | 7 |
{"gtypeCallerPart2", (DL_FUNC)>ypeCallerPart2, 19}, |
12 |
- {"gtypeCallerPart1TNoN", (DL_FUNC)>ypeCallerPart1TNoN, 17}, |
|
13 |
- {"gtypeCallerPart2TNoN", (DL_FUNC)>ypeCallerPart2TNoN, 19}, |
|
14 | 8 |
{NULL, NULL, 0} |
15 | 9 |
}; |
16 | 10 |
|
17 | 11 |
void R_init_crlmm(DllInfo *dll){ |
18 | 12 |
R_registerRoutines(dll, NULL, CallEntries, NULL, NULL); |
19 | 13 |
} |
20 |
- |
|
21 |
- |
|
22 |
- |