aboutsummaryrefslogtreecommitdiff
path: root/gn3/computations/biweight.R
diff options
context:
space:
mode:
authorAlexander Kabui2021-06-14 13:36:40 +0300
committerAlexander Kabui2021-06-14 13:36:40 +0300
commit57a6af689e85e5cbfe0a825d5b84ed9c451e6ad7 (patch)
treec151d405b40186d00d99a42aee715f441b25b6fc /gn3/computations/biweight.R
parent9d6af6049fa73c6aae4d224245d319e87bccbd6a (diff)
downloadgenenetwork3-57a6af689e85e5cbfe0a825d5b84ed9c451e6ad7.tar.gz
add biweight r script and tests
Diffstat (limited to 'gn3/computations/biweight.R')
-rw-r--r--gn3/computations/biweight.R15
1 files changed, 15 insertions, 0 deletions
diff --git a/gn3/computations/biweight.R b/gn3/computations/biweight.R
new file mode 100644
index 0000000..d0d8de4
--- /dev/null
+++ b/gn3/computations/biweight.R
@@ -0,0 +1,15 @@
+
+library(WGCNA)
+
+
+myArgs <- commandArgs(trailingOnly = TRUE)
+trait_vals <- as.numeric(unlist(strsplit(myArgs[1], split=" ")))
+target_vals <- as.numeric(unlist(strsplit(myArgs[2], split=" ")))
+
+BiweightMidCorrelation <- function(trait_val,target_val){
+ # results <- bicorAndPvalue(x,y)
+ return (list(c(results$bicor)[1],c(results$p)[1]))
+}
+cat(BiweightMidCorrelation(trait_vals,target_vals))
+
+