Mercurial > repos > deepakjadmin > r_caret_test3_jan
comparison r_caret_test1-revision_toolshed/mayachemtool/condition.R @ 0:1d73537f975f draft default tip
Uploaded
author | deepakjadmin |
---|---|
date | Wed, 06 Jan 2016 03:45:22 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:1d73537f975f |
---|---|
1 args <- commandArgs(T) | |
2 arg1 <- args[1] ## Reae Input prediction file | |
3 arg2 <- args[2] ## Less Than | |
4 arg3 <- args[3] ## Greater Than or equal too | |
5 arg4 <- args[4] ## Active / Inactive | |
6 arg5 <- args[5] ## define output file name | |
7 asd <- read.table(arg1,row.names=1,header=T) | |
8 if (arg4 == "Active") { | |
9 refined <- asd[asd[,1] >= as.numeric(arg3) & asd[,1] <= as.numeric(arg2),] | |
10 compound <- rownames(refined) | |
11 refined <- cbind(compound,refined) | |
12 } else if((arg4 == "Inactive") ){ | |
13 #refined <- asd[asd[,1] <= as.numeric(arg2),] | |
14 refined <- asd[asd[,2] >= as.numeric(arg3) & asd[,2] <= as.numeric(arg2),] | |
15 compound <- rownames(refined) | |
16 refined <- cbind(compound,refined)} | |
17 ###write.table(dw,file=args3,row.names=FALSE,sep="\t") | |
18 write.table(refined,file=arg5,row.names=FALSE,sep="\t") | |
19 |