#!/usr/bin/perl
use strict;
use warnings;

use lib "$ENV{'ARBHOME'}/lib/";
use ARB;

my $gb_main = ARB::open(":","r");
if (not $gb_main) {
  my $error = ARB::await_error();
  die "$error";
}

# recording started @ Wed Apr 30 11:15:03 2014
BIO::remote_action($gb_main,'ARB_NT','arb_pars');
BIO::remote_action($gb_main,'ARB_PARS','PARS_PROPS/GO');
BIO::remote_action($gb_main,'ARB_PARS','tree_remove_marked');
BIO::remote_action($gb_main,'ARB_PARS','ARB_PARSIMONY/POP');
# BIO::remote_action($gb_main,'ARB_NT','macros');
# recording stopped @ Wed Apr 30 11:15:37 2014
ARB::close($gb_main);
