Browse code

fix & patch .DollarNames for RStudio

- pattern = "", else fails when called with no first letter
- create and export derived methods, else RStudio does not recognize
inheritance (seems like a bug in RStudio)


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

Martin Morgan authored on 30/04/2017 14:40:40
Showing 1 changed files
... ...
@@ -1,3 +1,10 @@
1
+CHANGES IN VERSION 2.37
2
+-----------------------
3
+
4
+BUG FIXES
5
+
6
+    o '$' completion on eSet and ExpressionSet works in RStudio.
7
+
1 8
 CHANGES IN VERSION 2.33
2 9
 -----------------------
3 10
 
Browse code

bugfix: exprs<- validates dim, dimnames

- https://support.bioconductor.org/p/86260/
- some unit tests also created invalid objects


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

Martin Morgan authored on 18/08/2016 19:23:14
Showing 1 changed files
... ...
@@ -1,3 +1,10 @@
1
+CHANGES IN VERSION 2.33
2
+-----------------------
3
+
4
+BUG FIXES
5
+
6
+    o exprs<- enforces value with correct dim, dimnames.
7
+
1 8
 CHANGES IN VERSION 2.31
2 9
 -----------------------
3 10
 
Browse code

feature: tail.AnnotatedDataFrame, too

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

Martin Morgan authored on 18/12/2015 02:08:58
Showing 1 changed files
... ...
@@ -4,7 +4,7 @@ CHANGES IN VERSION 2.31
4 4
 NEW FEATURES
5 5
 
6 6
     o tab completion implemented for eSet classes
7
-    o head.AnnotatedDataFrame method introduced
7
+    o head and tail.AnnotatedDataFrame methods introduced
8 8
 
9 9
 CHANGES IN VERSION 2.27
10 10
 -----------------------
Browse code

feature: head.AnnotatedDataFrame

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

Martin Morgan authored on 18/12/2015 00:44:47
Showing 1 changed files
... ...
@@ -4,6 +4,7 @@ CHANGES IN VERSION 2.31
4 4
 NEW FEATURES
5 5
 
6 6
     o tab completion implemented for eSet classes
7
+    o head.AnnotatedDataFrame method introduced
7 8
 
8 9
 CHANGES IN VERSION 2.27
9 10
 -----------------------
Browse code

implement .DollarNames.eSet

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

Martin Morgan authored on 04/12/2015 14:18:22
Showing 1 changed files
... ...
@@ -1,3 +1,10 @@
1
+CHANGES IN VERSION 2.31
2
+-----------------------
3
+
4
+NEW FEATURES
5
+
6
+    o tab completion implemented for eSet classes
7
+
1 8
 CHANGES IN VERSION 2.27
2 9
 -----------------------
3 10
 
Browse code

Add write.AnnotatedDataFrame

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

Martin Morgan authored on 27/02/2015 02:23:52
Showing 1 changed files
... ...
@@ -1,10 +1,10 @@
1
-CHANGES IN VERSION 2.21
1
+CHANGES IN VERSION 2.27
2 2
 -----------------------
3 3
 
4
-BUG FIXES
4
+NEW FEATURES
5 5
 
6
-    o Updating an AnnotatedDataFrame no longer duplicates metadata
7
-      from partially matching column names.
6
+    o Add write.AnnotatedDataFrame function; request of
7
+    samuel.granjeaud
8 8
 
9 9
 CHANGES IN VERSION 2.21
10 10
 -----------------------
... ...
@@ -16,6 +16,11 @@ USER VISIBLE CHANGES
16 16
     o NChannelSet validity requires all assayDataElementNames() to be
17 17
       levels in varMetadata()$channel.
18 18
 
19
+BUG FIXES
20
+
21
+    o Updating an AnnotatedDataFrame no longer duplicates metadata
22
+      from partially matching column names.
23
+
19 24
 CHANGES IN VERSION 2.19
20 25
 -----------------------
21 26
 
Browse code

no partial name match when updating AnnotatedDataFrame metadata

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

Martin Morgan authored on 20/02/2014 01:44:19
Showing 1 changed files
... ...
@@ -1,6 +1,14 @@
1 1
 CHANGES IN VERSION 2.21
2 2
 -----------------------
3 3
 
4
+BUG FIXES
5
+
6
+    o Updating an AnnotatedDataFrame no longer duplicates metadata
7
+      from partially matching column names.
8
+
9
+CHANGES IN VERSION 2.21
10
+-----------------------
11
+
4 12
 USER VISIBLE CHANGES
5 13
 
6 14
     o channelNames<-,NChannelSet,*-methods allow re-naming channels
Browse code

stronger channelNames / assayDataElementNames validity

- flexible when retrieving channelNames for backward compatiblity


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

Martin Morgan authored on 10/06/2013 15:37:33
Showing 1 changed files
... ...
@@ -5,6 +5,9 @@ USER VISIBLE CHANGES
5 5
 
6 6
     o channelNames<-,NChannelSet,*-methods allow re-naming channels
7 7
 
8
+    o NChannelSet validity requires all assayDataElementNames() to be
9
+      levels in varMetadata()$channel.
10
+
8 11
 CHANGES IN VERSION 2.19
9 12
 -----------------------
10 13
 
Browse code

assayData<-,NChannelSet method

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

Martin Morgan authored on 14/05/2013 20:18:43
Showing 1 changed files
... ...
@@ -1,3 +1,10 @@
1
+CHANGES IN VERSION 2.21
2
+-----------------------
3
+
4
+USER VISIBLE CHANGES
5
+
6
+    o channelNames<-,NChannelSet,*-methods allow re-naming channels
7
+
1 8
 CHANGES IN VERSION 2.19
2 9
 -----------------------
3 10
 
Browse code

dimnames, dimnames<- and corresponding rownames, colnames on eSet

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

Martin Morgan authored on 27/11/2012 22:28:12
Showing 1 changed files
... ...
@@ -1,3 +1,11 @@
1
+CHANGES IN VERSION 2.19
2
+-----------------------
3
+
4
+USER VISIBLE CHANGES
5
+
6
+    o dimnames(), rownames(), colnames() and setters work on
7
+    eSet-derived objects
8
+
1 9
 CHANGES IN VERSION 2.17
2 10
 -----------------------
3 11
 
Browse code

allow dimnames(elt) to be NULL in assayDataNew

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

Martin Morgan authored on 11/06/2012 21:03:15
Showing 1 changed files
... ...
@@ -1,15 +1,10 @@
1
-CHANGES IN VERSION 2.17.5
1
+CHANGES IN VERSION 2.17
2 2
 -----------------------
3 3
 
4 4
 USER VISIBLE CHANGES
5 5
 
6 6
     o l2e(), previously deprecated, has been made defunct.
7 7
 
8
-CHANGES IN VERSION 2.17.1
9
-
10
-USER VISIBLE CHANGES
11
-
12 8
     o All objects made defunct in previous release cycles have been removed.
13 9
       This includes geneNames, getExpData, eList, reporterNames, getBiocRepos,
14 10
       read.exprSet, updateOldMiame, df2pD, read.pD, read.phenoData, exprData,
Browse code

Previously deprecated function l2e() has been made defunct.

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

Dan Tenenbaum authored on 26/04/2012 00:09:28
Showing 1 changed files
... ...
@@ -1,3 +1,10 @@
1
+CHANGES IN VERSION 2.17.5
2
+-----------------------
3
+
4
+USER VISIBLE CHANGES
5
+
6
+    o l2e(), previously deprecated, has been made defunct.
7
+
1 8
 CHANGES IN VERSION 2.17.1
2 9
 ----------------------
3 10
 
Browse code

Once again removing functions and classes marked defunct, but this time not still exporting the phenoData and phenoData<- methods which are not defunct (though the phenoData class is).

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

Dan Tenenbaum authored on 18/04/2012 19:05:17
Showing 1 changed files
... ...
@@ -1,3 +1,13 @@
1
+CHANGES IN VERSION 2.17.1
2
+----------------------
3
+
4
+USER VISIBLE CHANGES
5
+
6
+    o All objects made defunct in previous release cycles have been removed.
7
+      This includes geneNames, getExpData, eList, reporterNames, getBiocRepos,
8
+      read.exprSet, updateOldMiame, df2pD, read.pD, read.phenoData, exprData,
9
+      exprList, and phenoData.
10
+
1 11
 CHANGES IN VERSION 2.11
2 12
 ----------------------
3 13
 
Browse code

rolling back to r65233 because many packages depend on the defunct functions removed there

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

Dan Tenenbaum authored on 18/04/2012 16:57:35
Showing 1 changed files
... ...
@@ -1,13 +1,3 @@
1
-CHANGES IN VERSION 2.17.1
2
-
3
-USER VISIBLE CHANGES
4
-
5
-    o All objects made defunct in previous release cycles have been removed.
6
-      This includes geneNames, getExpData, eList, reporterNames, getBiocRepos,
7
-      read.exprSet, updateOldMiame, df2pD, read.pD, read.phenoData, exprData,
8
-      exprList, and phenoData.
9
-
10 1
 CHANGES IN VERSION 2.11
11 2
 ----------------------
12 3
 
Browse code

Cleanup: remove classes and functions deprecated in a previous release cycle, cleanup partial argument NOTEs, resave data files for maximum compression

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

Dan Tenenbaum authored on 17/04/2012 23:32:43
Showing 1 changed files
... ...
@@ -1,3 +1,13 @@
1
+CHANGES IN VERSION 2.17.1
2
+----------------------
3
+
4
+USER VISIBLE CHANGES
5
+
6
+    o All objects made defunct in previous release cycles have been removed.
7
+      This includes geneNames, getExpData, eList, reporterNames, getBiocRepos,
8
+      read.exprSet, updateOldMiame, df2pD, read.pD, read.phenoData, exprData,
9
+      exprList, and phenoData.
10
+
1 11
 CHANGES IN VERSION 2.11
2 12
 ----------------------
3 13
 
Browse code

better error message when varMetadata<-,AnnotatedDataFrame tries to update invalid column(s)

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

Martin Morgan authored on 16/12/2010 18:59:58
Showing 1 changed files
... ...
@@ -7,13 +7,10 @@ USER VISIBLE CHANGES
7 7
 
8 8
     o  MIAME class moved to subclass of MIAxE virtual class 
9 9
 
10
-
11 10
 NEW FEATURES
12 11
 
13 12
     o Added MIAxE virtual class to hold experiment meta-data classes
14 13
 
15
-
16
-
17 14
 CHANGES IN VERSION 2.7
18 15
 ----------------------
19 16
 
Browse code

- Added MIAxE virtual class to hold metadata for experiments - MIAME class is now a subclass of MIAxE - Bumped versions for eSet, ExpressionSet and MIAME objects

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

Valerie Obenchain authored on 01/11/2010 03:55:24
Showing 1 changed files
... ...
@@ -3,7 +3,14 @@ CHANGES IN VERSION 2.11
3 3
 
4 4
 USER VISIBLE CHANGES
5 5
 
6
-    o 'l2e' deprecated, use 'list2env' in base instead. 
6
+    o 'l2e' deprecated, use 'list2env' in base instead 
7
+
8
+    o  MIAME class moved to subclass of MIAxE virtual class 
9
+
10
+
11
+NEW FEATURES
12
+
13
+    o Added MIAxE virtual class to hold experiment meta-data classes
7 14
 
8 15
 
9 16
 
Browse code

Deprecated 'l2e' function. Use 'list2env' in base instead.

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

Valerie Obenchain authored on 29/10/2010 22:19:58
Showing 1 changed files
... ...
@@ -1,3 +1,12 @@
1
+CHANGES IN VERSION 2.11
2
+----------------------
3
+
4
+USER VISIBLE CHANGES
5
+
6
+    o 'l2e' deprecated, use 'list2env' in base instead. 
7
+
8
+
9
+
1 10
 CHANGES IN VERSION 2.7
2 11
 ----------------------
3 12
 
... ...
@@ -7,6 +16,7 @@ USER VISIBLE CHANGES
7 16
 
8 17
     o 'snpCall' 'snpCallProbability' accessors added for SnpSet.
9 18
 
19
+
10 20
 BUG FIXES
11 21
 
12 22
     o 'selectSome' returns short factors as character()
Browse code

update selectSome() to return character() on short factor (as advertised) update NEWS to print correctly with news(package='Biobase')

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

Martin Morgan authored on 28/02/2010 22:39:00
Showing 1 changed files
... ...
@@ -1,8 +1,5 @@
1
-        **************************************************
2
-        *                                                *
3
-        *              2.11 SERIES NEWS                   *
4
-        *                                                *
5
-        **************************************************
1
+CHANGES IN VERSION 2.7
2
+----------------------
6 3
 
7 4
 USER VISIBLE CHANGES
8 5
 
... ...
@@ -10,11 +7,13 @@ USER VISIBLE CHANGES
10 7
 
11 8
     o 'snpCall' 'snpCallProbability' accessors added for SnpSet.
12 9
 
13
-        **************************************************
14
-        *                                                *
15
-        *              2.10 SERIES NEWS                   *
16
-        *                                                *
17
-        **************************************************
10
+BUG FIXES
11
+
12
+    o 'selectSome' returns short factors as character()
13
+
14
+
15
+CHANGES IN VERSION 2.5
16
+----------------------
18 17
 
19 18
 USER VISIBLE CHANGES
20 19
 
... ...
@@ -25,11 +24,9 @@ USER VISIBLE CHANGES
25 24
     o 'sampleNames,NChannelSet-method' returns a vector when the
26 25
     sample names of each channel are the same.
27 26
 
28
-        **************************************************
29
-        *                                                *
30
-        *              2.8 SERIES NEWS                   *
31
-        *                                                *
32
-        **************************************************
27
+
28
+CHANGES IN VERSION 2.1
29
+----------------------
33 30
 
34 31
 NEW FEATURES
35 32
 
... ...
@@ -44,11 +41,9 @@ BUG FIXES
44 41
 
45 42
     o openPDF now checks for NULL or zero-length pdfviewer option
46 43
 
47
-        **************************************************
48
-        *                                                *
49
-        *              2.7 SERIES NEWS                   *
50
-        *                                                *
51
-        **************************************************
44
+
45
+CHANGES IN VERSION 2.0
46
+----------------------
52 47
 
53 48
 SIGNIFICANT USER-VISIBLE CHANGES
54 49
 
... ...
@@ -70,10 +65,14 @@ BUG FIXES
70 65
 NEWLY DEFUNCT CLASSES, METHODS, FUNCTIONS, DATA SETS
71 66
 
72 67
     o Defunct S4 Classes
73
-       1) annotatedDataset - class definition still exits to support phenoData conversion
68
+
69
+       1) annotatedDataset - class definition still exits to support
70
+       phenoData conversion
74 71
        2) exprMatrix - removed class definition
75
-       3) exprSet - class definition still exists to allow conversion to ExpressionSet
76
-       4) phenoData - class definition still exists to allow conversion to AnnotatedDataFrame
72
+       3) exprSet - class definition still exists to allow conversion
73
+       to ExpressionSet
74
+       4) phenoData - class definition still exists to allow
75
+       conversion to AnnotatedDataFrame
77 76
 
78 77
     o Defunct Generics/Methods
79 78
        1) addVarMetadataEntry - S4 generic definition removed
Browse code

update vignette to mention protocolData, AnnotationDbi (thanks Elmar) update show,eSet-method - display protocolData - don't display AnnotatedDataFrame detail if empty update cache man page to correctly escape '.' in example

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

Martin Morgan authored on 22/12/2009 19:46:28
Showing 1 changed files
... ...
@@ -6,6 +6,8 @@
6 6
 
7 7
 USER VISIBLE CHANGES
8 8
 
9
+    o 'show,eSet-method' summarizes protocolData, if available.
10
+
9 11
     o 'snpCall' 'snpCallProbability' accessors added for SnpSet.
10 12
 
11 13
         **************************************************
Browse code

add snpCall, snpCall<-, snpCallProbability, snpCallProbability<- for SnpSet

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

Martin Morgan authored on 05/12/2009 13:15:26
Showing 1 changed files
... ...
@@ -1,3 +1,13 @@
1
+        **************************************************
2
+        *                                                *
3
+        *              2.11 SERIES NEWS                   *
4
+        *                                                *
5
+        **************************************************
6
+
7
+USER VISIBLE CHANGES
8
+
9
+    o 'snpCall' 'snpCallProbability' accessors added for SnpSet.
10
+
1 11
         **************************************************
2 12
         *                                                *
3 13
         *              2.10 SERIES NEWS                   *
Browse code

Removed scanDate slot from eSet and replaced it with protocolData slot. Also updated eSet objects and bumped package version numbers.

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

Patrick Aboyoun authored on 24/07/2009 03:16:33
Showing 1 changed files
... ...
@@ -6,9 +6,9 @@
6 6
 
7 7
 USER VISIBLE CHANGES
8 8
 
9
-    o 'scanDates' slot added to eSet class to store a character
10
-    vector of length #samples; can be accessed by scanDates and
11
-    set by scanDates<-.
9
+    o 'protocolData' slot added to eSet class to store protocol
10
+    metadata stored in microarray data files; can be accessed by
11
+    protocolData and set by protocolData<-.
12 12
 
13 13
     o 'sampleNames,NChannelSet-method' returns a vector when the
14 14
     sample names of each channel are the same.
Browse code

Updating the NEWS file on the new scanDates slot in eSet.

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

Patrick Aboyoun authored on 18/06/2009 01:38:20
Showing 1 changed files
... ...
@@ -6,6 +6,10 @@
6 6
 
7 7
 USER VISIBLE CHANGES
8 8
 
9
+    o 'scanDates' slot added to eSet class to store a character
10
+    vector of length #samples; can be accessed by scanDates and
11
+    set by scanDates<-.
12
+
9 13
     o 'sampleNames,NChannelSet-method' returns a vector when the
10 14
     sample names of each channel are the same.
11 15
 
Browse code

report sampleNames,NChannelSet as vector when sample names are identical across channels

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

Martin Morgan authored on 25/04/2009 15:30:00
Showing 1 changed files
... ...
@@ -1,3 +1,14 @@
1
+        **************************************************
2
+        *                                                *
3
+        *              2.10 SERIES NEWS                   *
4
+        *                                                *
5
+        **************************************************
6
+
7
+USER VISIBLE CHANGES
8
+
9
+    o 'sampleNames,NChannelSet-method' returns a vector when the
10
+    sample names of each channel are the same.
11
+
1 12
         **************************************************
2 13
         *                                                *
3 14
         *              2.8 SERIES NEWS                   *
Browse code

openPDF checks for pdfviewer NULL or ''

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

Martin Morgan authored on 03/06/2008 16:41:56
Showing 1 changed files
... ...
@@ -15,6 +15,8 @@ BUG FIXES
15 15
     the second matrix with niether rows nor columns present in the
16 16
     first.
17 17
 
18
+    o openPDF now checks for NULL or zero-length pdfviewer option
19
+
18 20
         **************************************************
19 21
         *                                                *
20 22
         *              2.7 SERIES NEWS                   *
Browse code

NEWS for makeDataPacakge

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

Martin Morgan authored on 21/05/2008 13:19:45
Showing 1 changed files
... ...
@@ -4,6 +4,11 @@
4 4
         *                                                *
5 5
         **************************************************
6 6
 
7
+NEW FEATURES
8
+
9
+    o 'makeDataPacakge' method for ExpressionSet now accepts a
10
+    'description' argument for the generated manual page.
11
+
7 12
 BUG FIXES
8 13
 
9 14
     o combine,matrix,matrix-method would record 'NA' for entries in
Browse code

combine,matrix,matrix-method bug fix - non-overlapping rows and columns in the second matrix were NA, rather than the value in the second matrix - typo in vignett

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

Martin Morgan authored on 02/05/2008 00:20:41
Showing 1 changed files
... ...
@@ -1,3 +1,15 @@
1
+        **************************************************
2
+        *                                                *
3
+        *              2.8 SERIES NEWS                   *
4
+        *                                                *
5
+        **************************************************
6
+
7
+BUG FIXES
8
+
9
+    o combine,matrix,matrix-method would record 'NA' for entries in
10
+    the second matrix with niether rows nor columns present in the
11
+    first.
12
+
1 13
         **************************************************
2 14
         *                                                *
3 15
         *              2.7 SERIES NEWS                   *
Browse code

updateObject and BiobaseDevelopment vignette adjustments

updateObject
- now quiet about duplcating lockedEnvironment, unless
verbose=TRUE

Vignette:
- 'Recent' references removed
- ... and verbose passed through in updateObject method example
- variant of 'initialize,SwirlSet-method' allowing it to behave as a
copy constructor; a little sly here, as this is used in later parts
of the vignette and serves to quieten warnings about addition
arguments to 'new' during 'updateObject'


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

Martin Morgan authored on 20/04/2008 16:35:41
Showing 1 changed files
... ...
@@ -9,6 +9,9 @@ SIGNIFICANT USER-VISIBLE CHANGES
9 9
     o 'combine' on data.frame columns with mismatched levels causes a
10 10
     warning, rather than error.
11 11
 
12
+    o updateObject does not warn about duplicating locked environment,
13
+    unlesss verbose=TRUE
14
+
12 15
 NEW FEATURES
13 16
 
14 17
     o 'combine' now works to combine rows of ExpressionSet
Browse code

eSet AnnotatedDataFrame created with 'featureColumns' spelt incorrectly NEWS from previous change to combine

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

Martin Morgan authored on 08/04/2008 19:39:13
Showing 1 changed files
... ...
@@ -11,7 +11,7 @@ SIGNIFICANT USER-VISIBLE CHANGES
11 11
 
12 12
 NEW FEATURES
13 13
 
14
-    o None
14
+    o 'combine' now works to combine rows of ExpressionSet
15 15
 
16 16
 BUG FIXES
17 17
 
Browse code

Large undertaking to make classes exprSet and phenoData classes defunct. See NEWS file for more information.

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

Patrick Aboyoun authored on 04/03/2008 00:35:06
Showing 1 changed files
... ...
@@ -9,7 +9,6 @@ SIGNIFICANT USER-VISIBLE CHANGES
9 9
     o 'combine' on data.frame columns with mismatched levels causes a
10 10
     warning, rather than error.
11 11
 
12
-
13 12
 NEW FEATURES
14 13
 
15 14
     o None
... ...
@@ -17,4 +16,49 @@ NEW FEATURES
17 16
 BUG FIXES
18 17
 
19 18
     o AnnotatedDataFrame 'show' listed additional varMetadata column
20
-      names incorrectly when labelDescription was not thie first.
19
+      names incorrectly when labelDescription was not the first.
20
+
21
+NEWLY DEFUNCT CLASSES, METHODS, FUNCTIONS, DATA SETS
22
+
23
+    o Defunct S4 Classes
24
+       1) annotatedDataset - class definition still exits to support phenoData conversion
25
+       2) exprMatrix - removed class definition
26
+       3) exprSet - class definition still exists to allow conversion to ExpressionSet
27
+       4) phenoData - class definition still exists to allow conversion to AnnotatedDataFrame
28
+
29
+    o Defunct Generics/Methods
30
+       1) addVarMetadataEntry - S4 generic definition removed
31
+       2) as.data.frame.exprSet - S3 method removed
32
+       3) convertVarLabels - S4 generic definition removed
33
+       4) eList - S4 methods remain with .Defunct messages
34
+       5) "eList<-" - S4 methods remain with .Defunct messages
35
+       6) exprs2excel - S4 generic definition removed
36
+       7) getExpData - S4 methods remain with .Defunct messages
37
+       8) geneNames - S4 methods remain with .Defunct messages
38
+       9) "geneNames<-" - S4 methods remain with .Defunct messages
39
+      10) getUnits - S4 generic definition removed
40
+      11) getVarMetadata - S4 generic definition removed
41
+      12) iter - S4 generic definition removed
42
+      13) reporterInfo - S4 generic definition removed
43
+      14) "reporterInfo<-" - S4 generic definition removed
44
+      15) reporterNames - S4 methods remain with .Defunct messages
45
+      16) "reporterNames<-" - S4 methods remain with .Defunct messages
46
+      17) split (for use with exprSet objects) - S4 generic definition removed
47
+      18) update2MIAME - S4 generic definition removed
48
+
49
+    o Defunct functions
50
+       1) df2pD - function stub with .Defunct message
51
+       2) read.exprSet - function stub with .Defunct message
52
+       3) read.pD - function stub with .Defunct message
53
+       4) read.phenoData - function stub with .Defunct message
54
+       5) updateOldMiame - function stub with .Defunct message
55
+
56
+    o Defunct data sets
57
+       1) bbsym
58
+       2) eset - use sample.ExpressionSet instead
59
+       3) golubMergeSub
60
+       4) sample.eSet - use sample.MultiSet instead
61
+       4) sample.exprSet.1 - use sample.ExpressionSet instead
62
+       5) sample.exprSet - use sample.ExpressionSet instead
63
+       6) SWPD
64
+       7) swrep
Browse code

Show correct varMetadata column names when labelDescription is in a column other than the first

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

Martin Morgan authored on 28/02/2008 22:36:57
Showing 1 changed files
... ...
@@ -16,4 +16,5 @@ NEW FEATURES
16 16
 
17 17
 BUG FIXES
18 18
 
19
-
19
+    o AnnotatedDataFrame 'show' listed additional varMetadata column
20
+      names incorrectly when labelDescription was not thie first.
Browse code

- data.frame(x=I()) replaced with data.frame(x=,stringsAsFactors=FALSE) - added 'Bug fixes' section to NEWS

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

Martin Morgan authored on 12/02/2008 13:43:55
Showing 1 changed files
... ...
@@ -13,3 +13,7 @@ SIGNIFICANT USER-VISIBLE CHANGES
13 13
 NEW FEATURES
14 14
 
15 15
     o None
16
+
17
+BUG FIXES
18
+
19
+
Browse code

- Add a 'NEWS' file - error message tweak for initialize,eSet-method - BiobaseDevelopment.Rnw typo

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

Martin Morgan authored on 09/02/2008 14:39:24
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,15 @@
1
+        **************************************************
2
+        *                                                *
3
+        *              2.7 SERIES NEWS                   *
4
+        *                                                *
5
+        **************************************************
6
+
7
+SIGNIFICANT USER-VISIBLE CHANGES
8
+
9
+    o 'combine' on data.frame columns with mismatched levels causes a
10
+    warning, rather than error.
11
+
12
+
13
+NEW FEATURES
14
+
15
+    o None