| 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 @ Sat Apr 18 18:14:42 2015 |
|---|
| 15 | BIO::remote_action($gb_main,'ARB_NT','arb_dist'); |
|---|
| 16 | BIO::remote_action($gb_main,'ARB_DIST','NEIGHBOUR_JOINING/DETECT_CLUSTERS'); |
|---|
| 17 | BIO::remote_action($gb_main,'ARB_DIST','DETECT_CLUSTERS/CALC'); |
|---|
| 18 | # BIO::remote_action($gb_main,'ARB_NT','macros'); |
|---|
| 19 | # recording stopped @ Sat Apr 18 18:14:58 2015 |
|---|
| 20 | ARB::close($gb_main); |
|---|