git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/chromstaR@126725 bc3139a8-67e5-0310-9ffc-ced21a209358
... | ... |
@@ -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> |
... | ... |
@@ -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 |
|