diff old_version/wilcox_OLD2.R @ 2:6e4eb4856874 draft

Uploaded
author elixir-it
date Wed, 22 Jul 2020 19:20:30 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/old_version/wilcox_OLD2.R	Wed Jul 22 19:20:30 2020 +0000
@@ -0,0 +1,13 @@
+#!/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)