Re: [R] how to avoid a script from hanging up

2009-08-02 Thread Carlos J. Gil Bellosta
Hello, Something you can do is saving your strings in a external text file (using cat, for instance). In this way, you would not require much memory while extracting your data. Once you have extracted it, you can always have a look at your external file to see if it is too big, what to do with it

Re: [R] R: how to avoid a script from hanging up

2009-08-02 Thread jim holtman
process resumption rather than a re-run > Is it possible to access / create environment variables from inside an R > script ? > > Regards, > Maura > > > -Messaggio originale- > Da: jim holtman [mailto:jholt...@gmail.com] > Inviato: dom 02/08/2009 21.54 > A: mau...@a

[R] R: how to avoid a script from hanging up

2009-08-02 Thread mauede
ormation to make next run a process resumption rather than a re-run Is it possible to access / create environment variables from inside an R script ? Regards, Maura -Messaggio originale- Da: jim holtman [mailto:jholt...@gmail.com] Inviato: dom 02/08/2009 21.54 A: mau...@alice.it Cc: r-h

Re: [R] how to avoid a script from hanging up

2009-08-02 Thread jim holtman
You can use 'try' to catch errors and take corrective action. 'memory.size' and 'proc.time' will give you information on the memory usage of your application and the CPU time that has been used. On Sun, Aug 2, 2009 at 2:02 PM, wrote: > I am submitting this problem to the  R forum , rather than th

[R] how to avoid a script from hanging up

2009-08-02 Thread mauede
I am submitting this problem to the R forum , rather than the Bioconductor forum, because its nature is closer to programming style than any Bioinformatic contents. I have implemented an R script to extracts many strings through querying 3 Bioinformatic databases in the same loop cycle. Ideal