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