1 | #!/usr/bin/perl |
---|
2 | use strict; |
---|
3 | use warnings; |
---|
4 | |
---|
5 | use lib "$ENV{'ARBHOME'}/lib/"; |
---|
6 | use ARB; |
---|
7 | |
---|
8 | my $gb_main = ARB::open(":","r"); |
---|
9 | if (not $gb_main) { |
---|
10 | my $error = ARB::await_error(); |
---|
11 | die "$error"; |
---|
12 | } |
---|
13 | |
---|
14 | # recording started @ Wed Apr 1 10:34:12 2015 |
---|
15 | BIO::remote_action($gb_main,'ARB_NT','unmark_all'); |
---|
16 | BIO::remote_action($gb_main,'ARB_NT','mark_tree'); |
---|
17 | BIO::remote_action($gb_main,'ARB_NT','arb_pars'); |
---|
18 | BIO::remote_action($gb_main,'ARB_PARS','PARS_PROPS/GO'); |
---|
19 | BIO::remote_action($gb_main,'ARB_PARS','rm_add_marked_nni|'); |
---|
20 | BIO::remote_action($gb_main,'ARB_PARS','rm_add_marked'); |
---|
21 | # BIO::remote_action($gb_main,'ARB_NT','macros'); |
---|
22 | # recording stopped @ Wed Apr 1 10:34:59 2015 |
---|
23 | ARB::close($gb_main); |
---|