The profiling sampling was quite slow, it was set to sample once every 0.9 seconds (resulting in about 2,500 lines), I'll change it to 0.01 which should get it closer to the 100K mark. I haven't written too many shell scripts but this worked when I submitted it:
#!/bin/sh
nohup Rscript /Users/dangates/TreEvoExample_seed_793450.R
The only thing is that I have to change permission to execute this script with:
chmod u+x runTreEvo.sh
but that's not a major hassle,
I've started a run using that shell script and I'll get a folder with everything datafile, shell script, output, and both types of profile info in it in dropbox probably in a couple of hours and report if anything changes.
Cheers,
-Dan
________________________________________
From: treevo-...@googlegroups.com [treevo-...@googlegroups.com] on behalf of Derrick Zwickl [dzw...@gmail.com]
Sent: Thursday, May 31, 2012 3:07 PM
To: treevo-...@googlegroups.com
Subject: Re: New Profile Info
nohup Rscript /Users/dangates/TreEvoExample_seed_793450.R &> screenOutputor
Rscript /Users/dangates/TreEvoExample_seed_793450.R 2>&1 | tee screenOutput
| Subject: | capturing screen output |
|---|---|
| Date: | Thu, 31 May 2012 16:19:20 -0700 |
| From: | Derrick Zwickl <dzw...@gmail.com> |
| To: | treevo-...@googlegroups.com |
Hi Dan, One final thing for today. Be sure that you are capturing the information that would be going to the screen, detailing the progress of the run, acceptance, etc. Otherwise we don't know what actually happened during a run that we have profile data for. So, redirect to file or use tee, i.e. nohup Rscript /Users/dangates/TreEvoExample_seed_793450.R> screenOutput If you want to see the output and save it to file at the same time, use Rscript /Users/dangates/TreEvoExample_seed_793450.R | tee screenOutput Derrick