Browse code

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

unknown authored on 16/09/2010 12:01:16
Showing 4 changed files

... ...
@@ -548,3 +548,7 @@ function (which expects ff objects and supports parallel processing)
548 548
 ** Exported crlmmIlluminaV2(), which combines reading in of idats and genotyping in one.  Also added a man page for this function
549 549
 ** Added close() statements to readIdatFiles(), RGtoXY() and stripNormalize().  Added open() statement to stripNormalize(). Moved close() statement in preprocessInfinium2()
550 550
 ** tidied up crlmm-illumina.R, removing commented out code.
551
+
552
+2010-09-16 M. Ritchie 1.7.13
553
+** added immuno chip 12 as one of the chip options for Illumina.
554
+
... ...
@@ -1,8 +1,8 @@
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.7.13
5
-Date: 2010-08-30
4
+Version: 1.7.14
5
+Date: 2010-09-16
6 6
 Author: Benilton S Carvalho <carvalho@bclab.org>, Robert Scharpf <rscharpf@jhsph.edu>, Matt Ritchie <mritchie@wehi.edu.au>, Ingo Ruczinski <iruczins@jhsph.edu>, Rafael A Irizarry
7 7
 Maintainer: Benilton S Carvalho <carvalho@bclab.org>, Robert Scharpf <rscharpf@jhsph.edu>, Matt Ritchie <mritchie@wehi.EDU.AU>
8 8
 Description: Faster implementation of CRLMM specific to SNP 5.0 and 6.0 arrays, as well as a copy number tool specific to 5.0, 6.0, and Illumina platforms
... ...
@@ -40,4 +40,3 @@ Collate: AllGenerics.R
40 40
          zzz.R
41 41
 LazyLoad: yes
42 42
 biocViews: Microarray, Preprocessing, SNP, Bioinformatics, CopyNumberVariants
43
-
... ...
@@ -419,7 +419,8 @@ RGtoXY = function(RG, chipType, verbose=TRUE) {
419 419
                "human550v3b",            # 550K
420 420
                "human1mduov3b",          # 1M Duo
421 421
                "humanomni1quadv1b",      # Omni1 quad
422
-	       "humanomniexpress12v1b")  # Omni express 12
422
+	       "humanomniexpress12v1b",  # Omni express 12
423
+               "humanimmuno12v1b")       # Immuno chip 12
423 424
   if(missing(chipType)){
424 425
 	  chipType = match.arg(annotation(RG), chipList)
425 426
   } else chipType = match.arg(chipType, chipList)
... ...
@@ -167,7 +167,8 @@ validCdfNames <- function(){
167 167
 	  "human660quadv1a",
168 168
 	  "human1mduov3b",
169 169
 	  "humanomni1quadv1b",
170
-          "humanomniexpress12v1b")
170
+          "humanomniexpress12v1b",
171
+          "humanimmuno12v1b")
171 172
 }
172 173
 isValidCdfName <- function(cdfName){
173 174
 	chipList <- validCdfNames()