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 @ Thu May 8 14:17:08 2014 |
---|
15 | BIO::remote_action($gb_main,'ARB_NT','nds'); |
---|
16 | BIO::remote_awar($gb_main,'ARB_NT','tmp/viewkeys/viewkey_0/leaf','0'); |
---|
17 | BIO::remote_awar($gb_main,'ARB_NT','tmp/viewkeys/viewkey_2/leaf','0'); |
---|
18 | BIO::remote_awar($gb_main,'ARB_NT','tmp/viewkeys/viewkey_3/leaf','0'); |
---|
19 | BIO::remote_awar($gb_main,'ARB_NT','tmp/viewkeys/viewkey_4/leaf','0'); |
---|
20 | BIO::remote_awar($gb_main,'ARB_NT','tmp/viewkeys/viewkey_5/leaf','0'); |
---|
21 | BIO::remote_awar($gb_main,'ARB_NT','tmp/viewkeys/viewkey_6/leaf','0'); |
---|
22 | BIO::remote_awar($gb_main,'ARB_NT','tmp/viewkeys/viewkey_7/leaf','0'); |
---|
23 | BIO::remote_awar($gb_main,'ARB_NT','tmp/viewkeys/viewkey_8/leaf','0'); |
---|
24 | BIO::remote_awar($gb_main,'ARB_NT','tmp/viewkeys/viewkey_9/leaf','0'); |
---|
25 | BIO::remote_awar($gb_main,'ARB_NT','tmp/viewkeys/viewkey_1/key_text','nam'); |
---|
26 | BIO::remote_action($gb_main,'ARB_NT','NDS_PROPS/SELECT_NDS_2'); |
---|
27 | BIO::remote_action($gb_main,'ARB_NT','SELECT_SPECIES_FIELD/CLOSE'); |
---|
28 | # BIO::remote_action($gb_main,'ARB_NT','macros'); |
---|
29 | # recording stopped @ Thu May 8 14:18:04 2014 |
---|
30 | ARB::close($gb_main); |
---|