1 | #!/usr/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::await_error(); |
---|
8 | print ("Error: $error\n"); |
---|
9 | exit 0; |
---|
10 | } |
---|
11 | |
---|
12 | BIO::remote_action($gb_main,"ARB_NT","save_all_as"); |
---|
13 | BIO::remote_action($gb_main,"ARB_NT","optimize_db"); |
---|
14 | BIO::remote_action($gb_main,"ARB_NT","import_seq"); |
---|
15 | BIO::remote_action($gb_main,"ARB_NT","Import Sequences in Foreign Format (using readseq: slow !!) ..."); |
---|
16 | BIO::remote_action($gb_main,"ARB_NT","export_to_ARB"); |
---|
17 | BIO::remote_action($gb_main,"ARB_NT","export_seqs"); |
---|
18 | BIO::remote_action($gb_main,"ARB_NT","export_nds"); |
---|
19 | BIO::remote_action($gb_main,"ARB_NT","Export Sequences Only to Foreign Format (using readseq: slow) ..."); |
---|
20 | BIO::remote_action($gb_main,"ARB_NT","print_tree"); |
---|
21 | BIO::remote_action($gb_main,"ARB_NT","Pretty Print Sequences (slow) ..."); |
---|
22 | BIO::remote_action($gb_main,"ARB_NT","registration"); |
---|
23 | BIO::remote_action($gb_main,"ARB_NT","bug_report"); |
---|
24 | BIO::remote_action($gb_main,"ARB_NT","version_info"); |
---|
25 | BIO::remote_action($gb_main,"ARB_NT","HELP/CLOSE"); |
---|
26 | ARB::close($gb_main); |
---|