| 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 Sep 3 13:47:33 2017 |
|---|
| 15 | BIO::remote_action($gb_main,'ARB_NT','ARB_NT/SEARCH'); |
|---|
| 16 | BIO::remote_action($gb_main,'ARB_NT','SPECIES_QUERY/SEARCH_spec'); |
|---|
| 17 | BIO::remote_awar($gb_main,'ARB_NT','tmp/dbquery_spec/select','ArtPolyc'); |
|---|
| 18 | BIO::remote_action($gb_main,'ARB_NT','count_marked'); |
|---|
| 19 | BIO::remote_action($gb_main,'ARB_NT','SPECIES_QUERY/popinfo'); |
|---|
| 20 | BIO::remote_awar($gb_main,'ARB_NT','tmp/dbscan/species/mark','1'); |
|---|
| 21 | BIO::remote_action($gb_main,'ARB_NT','count_marked'); |
|---|
| 22 | # BIO::remote_action($gb_main,'ARB_NT','macros'); |
|---|
| 23 | # recording stopped @ Sun Sep 3 13:48:12 2017 |
|---|
| 24 | ARB::close($gb_main); |
|---|