| 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 @ Sun Oct 6 13:14:47 2019 |
|---|
| 15 | BIO::remote_action($gb_main,'ARB_NT','pt_server_admin'); |
|---|
| 16 | BIO::remote_awar($gb_main,'ARB_NT','tmp/probe_admin/pt_server','10'); |
|---|
| 17 | BIO::remote_action($gb_main,'ARB_NT','PT_SERVER_ADMIN/UPDATE_SERVER'); |
|---|
| 18 | BIO::remote_action($gb_main,'ARB_NT','PT_SERVER_ADMIN/CLOSE'); |
|---|
| 19 | BIO::remote_action($gb_main,'ARB_NT','ARB_NT/SEARCH'); |
|---|
| 20 | BIO::remote_action($gb_main,'ARB_NT','SPECIES_QUERY/SEARCH_spec'); |
|---|
| 21 | |
|---|
| 22 | BIO::remote_action($gb_main,'ARB_NT','spec_search_next_relativ_of_listed'); |
|---|
| 23 | BIO::remote_action($gb_main,'ARB_NT','SEARCH_NEXT_NEIGHBOURS_OF_LISTED/SAVELOAD_CONFIG'); |
|---|
| 24 | BIO::remote_action($gb_main,'ARB_NT','SEARCH_NEXT_NEIGHBOURS_OF_LISTED_config/RESET'); |
|---|
| 25 | BIO::remote_action($gb_main,'ARB_NT','SEARCH_NEXT_NEIGHBOURS_OF_LISTED_config/CLOSE'); |
|---|
| 26 | BIO::remote_action($gb_main,'ARB_NT','SEARCH_NEXT_NEIGHBOURS_OF_LISTED/select_next_neighbours_listed_dest_field'); |
|---|
| 27 | BIO::remote_awar($gb_main,'ARB_NT','next_neighbours/listed/dest_field','rel1'); |
|---|
| 28 | BIO::remote_action($gb_main,'ARB_NT','SEARCH_NEXT_NEIGHBOURS_OF_LISTED/CURR_PT_SERVER'); |
|---|
| 29 | BIO::remote_awar($gb_main,'ARB_NT','tmp/probe_admin/pt_server','10'); |
|---|
| 30 | BIO::remote_action($gb_main,'ARB_NT','SEARCH_NEXT_NEIGHBOURS_OF_LISTED/WRITE_FIELDS'); |
|---|
| 31 | |
|---|
| 32 | BIO::remote_action($gb_main,'ARB_NT','SPECIES_QUERY/select_tmp_dbquery_spec_key_0'); |
|---|
| 33 | BIO::remote_awar($gb_main,'ARB_NT','tmp/dbquery_spec/key_0','rel1'); |
|---|
| 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 | # BIO::remote_action($gb_main,'ARB_NT','macros'); |
|---|
| 37 | # recording stopped @ Sun Oct 6 13:16:35 2019 |
|---|
| 38 | # recording resumed @ Sun Oct 6 13:26:45 2019 |
|---|
| 39 | BIO::remote_action($gb_main,'ARB_NT','SELECT_PT_SERVER/CLOSE'); |
|---|
| 40 | BIO::remote_action($gb_main,'ARB_NT','SEARCH_NEXT_NEIGHBOURS_OF_LISTED/select_next_neighbours_listed_dest_field'); |
|---|
| 41 | BIO::remote_action($gb_main,'ARB_NT','SELECT_FIELD/CLOSE'); |
|---|
| 42 | # recording stopped @ Sun Oct 6 13:26:59 2019 |
|---|
| 43 | ARB::close($gb_main); |
|---|