... | ... |
@@ -1,3 +1,11 @@ |
1 |
+CHANGES IN VERSION 1.14.2 |
|
2 |
+------------------------- |
|
3 |
+ |
|
4 |
+BUG FIXES |
|
5 |
+ |
|
6 |
+ o Corrected format check for experiment.table: Spaces are not excepted any longer, because they lead to downstream errors. |
|
7 |
+ |
|
8 |
+ |
|
1 | 9 |
CHANGES IN VERSION 1.14.1 |
2 | 10 |
------------------------- |
3 | 11 |
|
... | ... |
@@ -1,3 +1,13 @@ |
1 |
+CHANGES IN VERSION 1.7.2 |
|
2 |
+------------------------ |
|
3 |
+ |
|
4 |
+BUGFIXES |
|
5 |
+ |
|
6 |
+ o Compatibility fixes for the new release of ggplot2 (3.0.0). |
|
7 |
+ |
|
8 |
+ o seqlevels() that are smaller than binsize are dropped properly in fixedWidthBins() and variableWidthBins(). |
|
9 |
+ |
|
10 |
+ |
|
1 | 11 |
CHANGES IN VERSION 1.5.3 |
2 | 12 |
------------------------ |
3 | 13 |
|
... | ... |
@@ -1,3 +1,11 @@ |
1 |
+CHANGES IN VERSION 1.5.3 |
|
2 |
+------------------------ |
|
3 |
+ |
|
4 |
+SIGNIFICANT USER-LEVEL CHANGES |
|
5 |
+ |
|
6 |
+ o Function 'changePostCutoff()' works on univariate peak calls without posterior needing to be present. |
|
7 |
+ |
|
8 |
+ |
|
1 | 9 |
CHANGES IN VERSION 1.5.1 |
2 | 10 |
------------------------ |
3 | 11 |
|
... | ... |
@@ -7,7 +7,7 @@ SIGNIFICANT USER-LEVEL CHANGES |
7 | 7 |
|
8 | 8 |
o Score in exported BED files is calculated as -10*log10(maxPostInPeak). |
9 | 9 |
|
10 |
- o 'changeFDR()' was renamed to 'adjustSensitivity()'. |
|
10 |
+ o 'changeFDR()' was renamed to 'changeMaxPostCutoff()'. |
|
11 | 11 |
|
12 | 12 |
|
13 | 13 |
CHANGES IN VERSION 1.3.1 |
... | ... |
@@ -3,7 +3,9 @@ CHANGES IN VERSION 1.5.1 |
3 | 3 |
|
4 | 4 |
SIGNIFICANT USER-LEVEL CHANGES |
5 | 5 |
|
6 |
- o Column 'peakScores' is now bounded between 0 and 1000 and approximately uniformly distributed. |
|
6 |
+ o New column 'maxPostInPeak' containing the maximum posterior within each peak. |
|
7 |
+ |
|
8 |
+ o Score in exported BED files is calculated as -10*log10(maxPostInPeak). |
|
7 | 9 |
|
8 | 10 |
o 'changeFDR()' was renamed to 'adjustSensitivity()'. |
9 | 11 |
|
... | ... |
@@ -3,7 +3,9 @@ CHANGES IN VERSION 1.3.2 |
3 | 3 |
|
4 | 4 |
SIGNIFICANT USER-LEVEL CHANGES |
5 | 5 |
|
6 |
- o Column 'peakScores' is now bounded between 0 and 1000 and uniformly distributed. It is calculated from columns 'posteriorScores'. |
|
6 |
+ o Column 'peakScores' is now bounded between 0 and 1000 and approximately uniformly distributed. |
|
7 |
+ |
|
8 |
+ o 'changeFDR()' was renamed to 'adjustSensitivity()'. |
|
7 | 9 |
|
8 | 10 |
|
9 | 11 |
CHANGES IN VERSION 1.3.1 |
... | ... |
@@ -3,7 +3,7 @@ CHANGES IN VERSION 1.3.2 |
3 | 3 |
|
4 | 4 |
SIGNIFICANT USER-LEVEL CHANGES |
5 | 5 |
|
6 |
- o Column 'peakScores' is now bounded between 0 and 1000. It is calculated from columns 'posteriorScores'. |
|
6 |
+ o Column 'peakScores' is now bounded between 0 and 1000 and uniformly distributed. It is calculated from columns 'posteriorScores'. |
|
7 | 7 |
|
8 | 8 |
|
9 | 9 |
CHANGES IN VERSION 1.3.1 |
... | ... |
@@ -1,3 +1,11 @@ |
1 |
+CHANGES IN VERSION 1.3.2 |
|
2 |
+------------------------ |
|
3 |
+ |
|
4 |
+SIGNIFICANT USER-LEVEL CHANGES |
|
5 |
+ |
|
6 |
+ o Column 'peakScores' is now bounded between 0 and 1000. It is calculated from columns 'posteriorScores'. |
|
7 |
+ |
|
8 |
+ |
|
1 | 9 |
CHANGES IN VERSION 1.3.1 |
2 | 10 |
------------------------ |
3 | 11 |
|
... | ... |
@@ -1,9 +1,22 @@ |
1 |
+CHANGES IN VERSION 1.1.5 |
|
2 |
+------------------------ |
|
3 |
+ |
|
4 |
+NEW FEATURES |
|
5 |
+ |
|
6 |
+ o New parameter 'stepsize' allows sliding bins. This improves localization of peaks. |
|
7 |
+ |
|
8 |
+SIGNIFICANT USER-LEVEL CHANGES |
|
9 |
+ |
|
10 |
+ o New default value for Chromstar(..., stepsize = 1/5 * binsize). |
|
11 |
+ |
|
12 |
+ |
|
1 | 13 |
CHANGES IN VERSION 1.1.4 |
2 | 14 |
------------------------ |
3 | 15 |
|
4 | 16 |
BUG FIXES |
5 | 17 |
|
6 | 18 |
o Fixed a mistake in the calculation of differential scores from version 1.1.2 |
19 |
+ |
|
7 | 20 |
|
8 | 21 |
CHANGES IN VERSION 1.1.2 |
9 | 22 |
------------------------ |
... | ... |
@@ -1,3 +1,10 @@ |
1 |
+CHANGES IN VERSION 1.1.3 |
|
2 |
+------------------------ |
|
3 |
+ |
|
4 |
+BUG FIXES |
|
5 |
+ |
|
6 |
+ o Fixed a mistake in the calculation of differential scores from version 1.1.2 |
|
7 |
+ |
|
1 | 8 |
CHANGES IN VERSION 1.1.2 |
2 | 9 |
------------------------ |
3 | 10 |
|
... | ... |
@@ -7,7 +14,7 @@ NEW FEATURES |
7 | 14 |
|
8 | 15 |
BUG FIXES |
9 | 16 |
|
10 |
- o Fixed a bug where chromosomes with a single bin where making problems. |
|
17 |
+ o Fixed a bug where chromosomes with a single bin were making problems. |
|
11 | 18 |
|
12 | 19 |
|
13 | 20 |
CHANGES IN VERSION 1.1.1 |
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,26 @@ |
1 |
+CHANGES IN VERSION 1.1.1 |
|
2 |
+------------------------ |
|
3 |
+ |
|
4 |
+NEW FEATURES |
|
5 |
+ |
|
6 |
+ o Selection of peaks can be done with 'changeFDR'. |
|
7 |
+ |
|
8 |
+ o Peak calls are available in each chromstaR-object as list entry '$peaks'. |
|
9 |
+ |
|
10 |
+SIGNIFICANT USER-LEVEL CHANGES |
|
11 |
+ |
|
12 |
+ o 'plotFoldEnrichment' renamed to 'plotEnrichment'. |
|
13 |
+ |
|
14 |
+ o 'exportBinnedData', 'exportUnivariates', 'exportMultivariates', 'exportCombinedMultivariates' replaced by 'exportCounts', 'exportPeaks', 'exportCombinations'. |
|
15 |
+ |
|
16 |
+BUG FIXES |
|
17 |
+ |
|
18 |
+ o Proper computation of fold enrichments, with < 1 indicating depletion and > 1 indicating enrichment. |
|
19 |
+ |
|
20 |
+DEPRECATED AND DEFUNCT |
|
21 |
+ |
|
22 |
+ o 'changePostCutoff'. |
|
23 |
+ |
|
24 |
+ o 'plotFoldEnrichment'. |
|
25 |
+ |
|
26 |
+ o 'exportBinnedData', 'exportUnivariates', 'exportMultivariates', 'exportCombinedMultivariates'. |