(* These are comments in a POY script *)
wipe ()
read ("course.fasta", "built_trees.tree")
report (data, treestats)
(* At this point you can see that we
have loaded some molecular data as well as
initial trees. We will store it under the
label initial_data. *)
store ("initial_data")
select ()
(* We will now modify the data, using a
command that will be introduced later. *)
transform (static_approximation)
report (data, treestats)
(* Notice that now we are only analyzing
static homology characters. *)
store ("static_data")
use ("initial_data")
report (data, treestats)
(* See the characters are the same as the
originals? *)
use ("static_data")
report (data, treestats)
(* Is it what you expected? *)
wipe ()
read ("course.fasta", "built_trees.tree")
store ("initial")
swap (tbr)
report (treestats)
use ("initial")
swap (spr)
report (treestats)
report ("swap_course.tree")
exit ()