diff old_version/wilcox_OLD2.R @ 3:221db2eb3c8e draft default tip

Uploaded
author elixir-it
date Wed, 22 Jul 2020 19:23:14 +0000
parents 6e4eb4856874
children
line wrap: on
line diff
--- a/old_version/wilcox_OLD2.R	Wed Jul 22 19:20:30 2020 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-#!/usr/bin/env Rscript
-args <- commandArgs(trailingOnly = TRUE)
-
-fileR=args[1]
-fileT=args[2]
-
-data_R=read.table(fileR,header=T)
-data_T=read.table(fileT,header=T)
-
-
-P=wilcox.test(data_R$VINYL_score,data_T$VINYL_score,alternative="gr")$p.value
-
-cat (P)