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 @ Tue May 13 15:17:37 2014 |
---|
15 | BIO::remote_action($gb_main,'ARB_NT','pt_server_admin'); |
---|
16 | BIO::remote_awar($gb_main,'ARB_NT','tmp/probe_admin/pt_server','6'); |
---|
17 | BIO::remote_action($gb_main,'ARB_NT','PT_SERVER_ADMIN/UPDATE_SERVER'); |
---|
18 | BIO::remote_action($gb_main,'ARB_NT','ARB_NT/SEARCH'); |
---|
19 | BIO::remote_action($gb_main,'ARB_NT','SPECIES_QUERY/SEARCH_spec'); |
---|
20 | BIO::remote_awar($gb_main,'ARB_NT','tmp/dbquery_spec/select','ArtGlobi'); |
---|
21 | BIO::remote_action($gb_main,'ARB_NT','spec_search_next_relativ_of_sel'); |
---|
22 | BIO::remote_action($gb_main,'ARB_NT','SEARCH_NEXT_RELATIVE_OF_SELECTED/SEARCH'); |
---|
23 | BIO::remote_action($gb_main,'ARB_NT','PT_SERVER_ADMIN/KILL_SERVER'); |
---|
24 | # recording stopped @ Tue May 13 15:18:20 2014 |
---|
25 | ARB::close($gb_main); |
---|