Browse code

added generics for CA, CB, and totalCopyNumber (moved from oligoClasses)

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

Rob Scharp authored on 21/08/2010 02:48:14
Showing 2 changed files

... ...
@@ -28,7 +28,7 @@ importClassesFrom(oligoClasses, SnpSuperSet, AlleleSet, CNSet)
28 28
 
29 29
 importMethodsFrom(oligoClasses, allele, calls, "calls<-", confs,
30 30
 		  "confs<-", cnConfidence, "cnConfidence<-", isSnp,
31
-		  chromosome, position, CA, "CA<-", CB, "CB<-", A, B,
31
+		  chromosome, position, A, B,
32 32
 		  "A<-", "B<-", open, close)
33 33
 
34 34
 importFrom(oligoClasses, chromosome2integer, celfileDate, list.celfiles,
... ...
@@ -16,4 +16,8 @@ setGeneric("phi", function(object, allele) standardGeneric("phi"))
16 16
 setGeneric("sigma2", function(object, allele) standardGeneric("sigma2"))
17 17
 setGeneric("tau2", function(object, allele) standardGeneric("tau2"))
18 18
 
19
+setGeneric("CA", function(object) standardGeneric("CA"))
20
+setGeneric("CB", function(object) standardGeneric("CB"))
21
+setGeneric("totalCopyNumber", function(object, i, j, ...) standardGeneric("totalCopyNumber"))
22
+
19 23