aboutsummaryrefslogtreecommitdiff
path: root/gn3/computations/test_biweight.R
diff options
context:
space:
mode:
authorAlexander Kabui2021-06-20 09:04:55 +0300
committerAlexander Kabui2021-06-20 09:04:55 +0300
commit864f231bbdbe2c3b3c96b0158a15811ac7790c3f (patch)
treed0d0eee217c984bd72ecfacc0b131848fcb5b89d /gn3/computations/test_biweight.R
parentb566a8950864a373f95ae2914b862e9846297b2d (diff)
downloadgenenetwork3-864f231bbdbe2c3b3c96b0158a15811ac7790c3f.tar.gz
make requested changes to biweight
Diffstat (limited to 'gn3/computations/test_biweight.R')
-rw-r--r--gn3/computations/test_biweight.R25
1 files changed, 0 insertions, 25 deletions
diff --git a/gn3/computations/test_biweight.R b/gn3/computations/test_biweight.R
deleted file mode 100644
index 599e733..0000000
--- a/gn3/computations/test_biweight.R
+++ /dev/null
@@ -1,25 +0,0 @@
-library(testthat)
-source("./biweight.R", chdir = TRUE)
-
-test_that("sum of vector", {
- results <- sum(c(1,2))
- expect_equal(results, 3)
-})
-
-
-test_that("biweight results"),{
- vec_1 <- c(1,2,3,4)
- vec_2 <- c(1,2,3,4)
-
- results <- BiweightMidCorrelation(vec_1,vec_2)
- expect_equal(c(1.0,0.0),results)
-}
-
-
-test_that("parsing args "),{
- my_args <- c("1 2 3 4","5 6 7 8")
- results <- ParseArgs(my_args)
-
- expect_equal(results[1],c(1,2,3,4))
- expect_equal(results[2],c(5,6,7,8))
-} \ No newline at end of file