Skip to content
Snippets Groups Projects
Commit a9c86840 authored by Holger Brandl's avatar Holger Brandl
Browse files

started intergenic binding analysis

parent f930b501
No related branches found
No related tags found
No related merge requests found
......@@ -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))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment