comparison GetAllPatterns.R @ 5:9cf7a632a73e draft

Uploaded
author ning
date Fri, 15 Mar 2013 18:21:00 -0400
parents
children
comparison
equal deleted inserted replaced
4:d5394f539b07 5:9cf7a632a73e
1 sink(file="/tmp/none")
2 sink("/dev/null")
3 options(warn=-1)
4 options(echo=F)
5
6 invisible("EBSeq")
7 suppressMessages(library("EBSeq"))
8
9 args <- commandArgs()
10 inputfile <- args[6]
11 outputfile <- args[7]
12 #PairwisePlots <-args[6]
13
14 print(args)
15
16 Conds=strsplit(inputfile,split=",")[[1]]
17
18
19 Out=GetPatterns(Conds)
20
21
22 write.table(Out,file=outputfile,quote=F,col.names=T,row.names=T,sep = "\t")
23