From a9c868406f25c423d8fb6ee7aba0c31840af937d Mon Sep 17 00:00:00 2001
From: Holger Brandl <brandl@mpi-cbg.de>
Date: Mon, 15 Sep 2014 18:05:21 +0200
Subject: [PATCH] started intergenic binding analysis

---
 R/core_commons.R | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/R/core_commons.R b/R/core_commons.R
index 6731b9e..8499262 100644
--- a/R/core_commons.R
+++ b/R/core_commons.R
@@ -157,7 +157,7 @@ replaceNA <- function(x, withValue) { x[is.na(x)] <- withValue; x }
 ## Deprecated: load dplyr after biomart to avoid this problem
 #dselect <- function(...) dplyr::select(...)
 
-removeOutliers <- function(values, range=quantile(values, c(0.05, 0.95)))  pmax(range[1], pmin(range[2], values))
+trimOutliers <- function(values, range=quantile(values, c(0.05, 0.95)))  pmax(range[1], pmin(range[2], values))
 
 
 
-- 
GitLab