| 1 | #!/usr/arb/bin/perl -w |
|---|
| 2 | use lib "$ENV{'ARBHOME'}/lib/"; |
|---|
| 3 | use ARB; |
|---|
| 4 | |
|---|
| 5 | $gb_main = ARB::open(":","r"); |
|---|
| 6 | if (! $gb_main ) { |
|---|
| 7 | $error = ARB::get_error(); |
|---|
| 8 | print ("$error\n"); |
|---|
| 9 | exit 0; |
|---|
| 10 | } |
|---|
| 11 | |
|---|
| 12 | BIO::remote_action($gb_main,"ARB_NT","ARB_NT/save_all_as"); |
|---|
| 13 | BIO::remote_action($gb_main,"ARB_NT","ARB_NT/optimize_db"); |
|---|
| 14 | BIO::remote_action($gb_main,"ARB_NT","ARB_NT/import_seq"); |
|---|
| 15 | BIO::remote_action($gb_main,"ARB_NT","ARB_NT/Import Sequences in Foreign Format (using readseq: slow !!) ..."); |
|---|
| 16 | BIO::remote_action($gb_main,"ARB_NT","ARB_NT/Test arb_jim ..."); |
|---|
| 17 | BIO::remote_action($gb_main,"ARB_NT","ARB_NT/export_to_ARB"); |
|---|
| 18 | BIO::remote_action($gb_main,"ARB_NT","ARB_NT/export_seqs"); |
|---|
| 19 | BIO::remote_action($gb_main,"ARB_NT","ARB_NT/export_nds"); |
|---|
| 20 | BIO::remote_action($gb_main,"ARB_NT","ARB_NT/Export Sequences only to Foreign Format (using readseq: slow) ..."); |
|---|
| 21 | BIO::remote_action($gb_main,"ARB_NT","ARB_NT/print_tree"); |
|---|
| 22 | BIO::remote_action($gb_main,"ARB_NT","ARB_NT/Pretty Print Sequences (slow) ..."); |
|---|
| 23 | BIO::remote_action($gb_main,"ARB_NT","ARB_NT/registration"); |
|---|
| 24 | BIO::remote_action($gb_main,"ARB_NT","ARB_NT/bug_report"); |
|---|
| 25 | ARB::close($gb_main); |
|---|