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 @ Wed Apr 2 19:18:30 2014 |
---|
15 | BIO::remote_action($gb_main,'ARB_NT','ARB_NT/SEARCH'); |
---|
16 | BIO::remote_awar($gb_main,'ARB_NT','tmp/dbquery_spec/by','0'); |
---|
17 | BIO::remote_awar($gb_main,'ARB_NT','tmp/dbquery_spec/ere','1'); |
---|
18 | BIO::remote_awar($gb_main,'ARB_NT','tmp/dbquery_spec/ere','0'); |
---|
19 | BIO::remote_action($gb_main,'ARB_NT','SPECIES_QUERY/SEARCH_spec'); |
---|
20 | BIO::remote_awar($gb_main,'ARB_NT','tmp/dbquery_spec/select','AnaAbact'); |
---|
21 | BIO::remote_action($gb_main,'ARB_NT','count_marked'); |
---|
22 | BIO::remote_action($gb_main,'ARB_NT','unmark_all'); |
---|
23 | BIO::remote_action($gb_main,'ARB_NT','ARB_NT/INFO'); |
---|
24 | BIO::remote_awar($gb_main,'ARB_NT','tmp/arbdb_scanner_0/mark','1'); |
---|
25 | BIO::remote_action($gb_main,'ARB_NT','SPECIES_QUERY/SEARCH_spec'); |
---|
26 | BIO::remote_action($gb_main,'ARB_NT','count_marked'); |
---|
27 | # recording stopped @ Wed Apr 2 19:39:47 2014 |
---|
28 | ARB::close($gb_main); |
---|