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

Uploaded
author elixir-it
date Wed, 22 Jul 2020 19:20:30 +0000
parents
children
comparison
equal deleted inserted replaced
1:35c308dd6420 2:6e4eb4856874
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)