Displaying 1 result from an estimated 1 matches for "systime102".
Did you mean:
systime101
2010 Aug 08
2
Importing arguments for use by functions in a script
...R):
rm(list= ls())
systime1<-system.time(source("seq_imp_fct.R"))
systime2<-system.time(source("pattern_fct.R"))
systime3<-system.time(source("AAdistribution_fct.R"))
# run function
systime101<-system.time(seqres<-seq_imp_fct("testprot.txt"))
systime102<-system.time(patres<-pattern_fct(pattern="SS{1,2}",sequences=seqres))
systime103<-system.time(AAres<-AAdistribution_fct(sequences=patres))
As my list is of functions is growing, I was attempting to write a script
that would allow me to semi-automate this.
I have created a ta...