comparison 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
comparison
equal deleted inserted replaced
2:6e4eb4856874 3:221db2eb3c8e
1 #!/usr/bin/env Rscript
2 args <- commandArgs(trailingOnly = TRUE)
3
4 fileR=args[1]
5 fileT=args[2]
6
7 data_R=read.table(fileR,header=T)
8 data_T=read.table(fileT,header=T)
9
10
11 P=wilcox.test(data_R$VINYL_score,data_T$VINYL_score,alternative="gr")$p.value
12
13 cat (P)