--
You received this message because you are subscribed to the Google Groups "beast-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to beast-users...@googlegroups.com.
To post to this group, send email to beast...@googlegroups.com.
Visit this group at http://groups.google.com/group/beast-users.
For more options, visit https://groups.google.com/d/optout.
Just to add a little more from my recent experience, the instructions below will work as long as the default settings in the shell script are fine.
But in my case, I needed more memory. I found you can also call the program directly,
> The command line argument I used is java -Xms296m -Xmx16384m -Djava.library.path="/opt/beast/1.8.1/lib"-cp "/opt/beast/1.8.1/lib/beast.jar" dr.app.tools.TreeAnnotator
–burnin 3000 -heights mean test2.trees.txt test2.MCC.tree
> java -Xms296m (this sets the startup jvm space) -Xmx16384m (this sets the maximum heap space to 16GB)
Just replace the path to beast.jar in my implementation “/opt/beast/1.8.1/lib” with the correct path in yours.
Mark