read ("course.fasta")
build (3)
swap ()
select ()
If we run it interactively, line by line, then POY would:
read ("course.fasta")
build (500)
swap ()
select ()
Then we would need to have enough memory capacity to hold 500 trees!
This might not be possible.
wipe ()
read ("course.fasta")
build (3)
swap ()
report (treestats)
select ()
wipe ()
read ("course.fasta")
build (3)
swap (constraint)
select ()
wipe ()
read ("course.fasta")
build (3)
swap ()
perturb (transform (static_approx))
select ()
wipe ()
read ("course.fasta")
build (3)
swap ()
transform (static_approx)
perturb ()
select ()
run ("script.txt")
You can include the run command in other scripts to call, for example,
routines for searches or for support value calculations. Write a simple
script and try to execute it in this way.