Browse code

Fixing NEWS.Rd

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

Benilton Carvalho authored on 10/01/2011 12:01:03
Showing 2 changed files

... ...
@@ -1,22 +1,22 @@
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.9.9
4
+Version: 1.9.10
5 5
 Date: 2010-12-10
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
-Maintainer: Benilton S Carvalho <carvalho@bclab.org>, Robert Scharpf <rscharpf@jhsph.edu>, Matt Ritchie <mritchie@wehi.EDU.AU>
6
+Author: Benilton S Carvalho <Benilton.Carvalho@cancer.org.uk>, Robert Scharpf <rscharpf@jhsph.edu>, Matt Ritchie <mritchie@wehi.edu.au>, Ingo Ruczinski <iruczins@jhsph.edu>, Rafael A Irizarry
7
+Maintainer: Benilton S Carvalho <Benilton.Carvalho@cancer.org.uk>, 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
9 9
 License: Artistic-2.0
10
-Depends: R (>= 2.11.0),
10
+Depends: R (>= 2.13.0),
11 11
          methods,
12
-         Biobase (>= 2.9.0),
13
-         oligoClasses (>= 1.13.5)
14
-Imports: affyio (>= 1.15.2),
12
+         Biobase (>= 2.11.8),
13
+         oligoClasses (>= 1.13.8)
14
+Imports: affyio (>= 1.19.2),
15 15
          ellipse,
16
-         ff,
17
-         genefilter,
16
+         ff (>= 2.2-1),
17
+         genefilter (>= 1.33.0),
18 18
          mvtnorm,
19
-         preprocessCore,
19
+         preprocessCore (>= 1.13.4),
20 20
          splines,
21 21
          stats,
22 22
          SNPchip,
23 23
deleted file mode 100644
... ...
@@ -1,51 +0,0 @@
1
-        **************************************************
2
-        *                                                *
3
-        *              1.3 SERIES NEWS                   *
4
-        *                                                *
5
-        **************************************************
6
-
7
-USER VISIBLE CHANGES
8
-
9
-     o 3 new classes created:
10
-
11
-        i.  'ABset': container for quantile-normalized A and B
12
-       	    intensities for both SNP and copy number probes.  Required
13
-       	    assay data elements are 'A' and 'B'.  Extends eSet
14
-       	    directly.
15
-
16
-                - For nonpolymorphic probes, the quantile normalized
17
-                  intensity is stored in the 'A' assay data element.
18
-                  The corresponding row in the 'B' assay data element
19
-                  is NA.  This is a bit inefficient, but greatly
20
-                  simplifies downstream analyses.  In particular, '['
21
-                  works.
22
-
23
-        ii.  'CrlmmSetList': container for results from preprocessing
24
-	     and genotyping.  This object is a list.  The first
25
-	     element of the list is an ABset.  The second element is a
26
-	     SnpSet containing genotype calls.  The two elements are
27
-	     required to have identical featureNames and sampleNames.
28
-
29
-       		- added several methods for subsetting and accessing
30
- 		  elements of this object, including featureNames,
31
- 		  sampleNames, and "[".
32
-
33
-         iii. 'CopyNumberSet': contains locus-level estimates of copy
34
-  	      number for SNPs and polymorphic probes.
35
-
36
-       	        - Required assay data elements are 'CA' and 'CB',
37
-                  corresponding to the absolute copy number for allele
38
-                  A and B, respectively.
39
-
40
-	        - For nonpolymorphic probes, the total copy number is
41
-                  stored in the 'CA' slot and a NA is recorded for the
42
-                  corresponding row in the CB matrix. 
43
-
44
-		- Useful methods: 'copyNumber', 'ellipse', 'points'
45
-
46
-     o 'crlmmWrapper' function does preprocessing
47
-       (quantile-normalization) and genotyping, saving an object of
48
-       class CrlmmSetList for each chromosome
49
-
50
-     o 'computeCopynumber' now requires an object of class
51
-        'CrlmmSetList' and returns an object of class 'CopyNumberSet'.