| 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 @ Mon Jun 2 11:19:54 2014 |
|---|
| 15 | # BIO::remote_action($gb_main,'ARB_NT','MACROS/CLOSE'); |
|---|
| 16 | BIO::remote_action($gb_main,'ARB_NT','ARB_NT/SEARCH'); |
|---|
| 17 | BIO::remote_action($gb_main,'ARB_NT','SPECIES_QUERY/SEARCH_spec'); |
|---|
| 18 | BIO::remote_action($gb_main,'ARB_NT','sort_by_tree'); |
|---|
| 19 | BIO::remote_action($gb_main,'ARB_NT','SPECIES_QUERY/SEARCH_spec'); |
|---|