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 @ Fri Apr 11 15:48:14 2014 |
---|
15 | BIO::remote_action($gb_main,'ARB_NT','ARB_NT/SEARCH'); |
---|
16 | BIO::remote_action($gb_main,'ARB_NT','SPECIES_QUERY/field_sel_spec_0'); |
---|
17 | BIO::remote_awar($gb_main,'ARB_NT','tmp/dbquery_spec/key_0','ambig'); |
---|
18 | BIO::remote_action($gb_main,'ARB_NT','SPECIES_QUERY/field_sel_spec_0'); |
---|
19 | BIO::remote_awar($gb_main,'ARB_NT','tmp/dbquery_spec/key_0','name'); |
---|
20 | BIO::remote_awar($gb_main,'ARB_NT','tmp/dbquery_spec/query_0',''); |
---|
21 | BIO::remote_awar($gb_main,'ARB_NT','tmp/dbquery_spec/query_0','a*'); |
---|
22 | BIO::remote_action($gb_main,'ARB_NT','SPECIES_QUERY/field_sel_spec_0'); |
---|
23 | BIO::remote_awar($gb_main,'ARB_NT','tmp/dbquery_spec/key_0','ambig'); |
---|
24 | BIO::remote_awar($gb_main,"ARB_NT","tmp/dbquery_spec/by","2"); |
---|
25 | BIO::remote_awar($gb_main,'ARB_NT','tmp/dbquery_spec/by','1'); |
---|
26 | BIO::remote_awar($gb_main,'ARB_NT','tmp/dbquery_spec/ere','2'); |
---|
27 | BIO::remote_awar($gb_main,'ARB_NT','tmp/dbquery_spec/ere','1'); |
---|
28 | BIO::remote_awar($gb_main,"ARB_NT","tmp/dbquery_spec/ere","0"); |
---|
29 | BIO::remote_action($gb_main,'ARB_NT','SPECIES_QUERY/SEARCH_spec'); |
---|
30 | # BIO::remote_action($gb_main,'ARB_NT','macros'); |
---|
31 | # recording stopped @ Fri Apr 11 15:50:17 2014 |
---|
32 | # recording resumed @ Fri Apr 11 15:50:36 2014 |
---|
33 | BIO::remote_action($gb_main,'ARB_NT','SELECT_LIST_ENTRY/CLOSE'); |
---|
34 | BIO::remote_awar($gb_main,'ARB_NT','tmp/dbquery_spec/query_0','*'); |
---|
35 | BIO::remote_action($gb_main,'ARB_NT','SPECIES_QUERY/SEARCH_spec'); |
---|
36 | # recording stopped @ Fri Apr 11 15:50:51 2014 |
---|
37 | ARB::close($gb_main); |
---|