Browse code

Update to 1.1.4

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

Aaron Taudt authored on 13/02/2017 11:40:08
Showing 4 changed files

... ...
@@ -1,7 +1,7 @@
1 1
 Package: chromstaR
2 2
 Type: Package
3 3
 Title: Combinatorial and Differential Chromatin State Analysis for ChIP-Seq Data
4
-Version: 1.1.3
4
+Version: 1.1.4
5 5
 Date: 2016-10-19
6 6
 Author: Aaron Taudt, Maria Colome Tatche, Matthias Heinig, Minh Anh Nguyen
7 7
 Maintainer: Aaron Taudt <aaron.taudt@gmail.com>
... ...
@@ -1,4 +1,4 @@
1
-CHANGES IN VERSION 1.1.3
1
+CHANGES IN VERSION 1.1.4
2 2
 ------------------------
3 3
 
4 4
 BUG FIXES
... ...
@@ -29,7 +29,7 @@ differentialScoreSum <- function(mat, info, FUN='-') {
29 29
         return(NULL)
30 30
     }
31 31
     differential.scores <- differentialScores(mat, info, FUN)
32
-    differential.score <- do.call('+', differential.scores)
32
+    differential.score <- Reduce('+', differential.scores)
33 33
     return(differential.score)
34 34
 }
35 35
 
... ...
@@ -1,5 +1,5 @@
1 1
 .onAttach <- function(...) {
2 2
 
3
-    packageStartupMessage('Loading chromstaR')
3
+    packageStartupMessage('\nPlease visit https://github.com/ataudt/chromstaR for the latest bugfixes and features.\n')
4 4
 
5 5
 }