source: tags/initial/lib/macros/xopen.amc

Last change on this file was 2, checked in by oldcode, 24 years ago

Initial revision

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 1.1 KB
Line 
1#!/usr/arb/bin/perl -w
2use lib "$ENV{'ARBHOME'}/lib/";
3use ARB;
4
5$gb_main = ARB::open(":","r");
6if (! $gb_main ) {
7    $error = ARB::get_error();
8    print ("$error\n");
9    exit 0;
10}
11
12BIO::remote_action($gb_main,"ARB_NT","ARB_NT/save_all_as");
13BIO::remote_action($gb_main,"ARB_NT","ARB_NT/optimize_db");
14BIO::remote_action($gb_main,"ARB_NT","ARB_NT/import_seq");
15BIO::remote_action($gb_main,"ARB_NT","ARB_NT/Import Sequences in Foreign Format (using readseq: slow !!) ...");
16BIO::remote_action($gb_main,"ARB_NT","ARB_NT/Test arb_jim ...");
17BIO::remote_action($gb_main,"ARB_NT","ARB_NT/export_to_ARB");
18BIO::remote_action($gb_main,"ARB_NT","ARB_NT/export_seqs");
19BIO::remote_action($gb_main,"ARB_NT","ARB_NT/export_nds");
20BIO::remote_action($gb_main,"ARB_NT","ARB_NT/Export Sequences only to Foreign Format (using readseq: slow) ...");
21BIO::remote_action($gb_main,"ARB_NT","ARB_NT/print_tree");
22BIO::remote_action($gb_main,"ARB_NT","ARB_NT/Pretty Print Sequences (slow) ...");
23BIO::remote_action($gb_main,"ARB_NT","ARB_NT/registration");
24BIO::remote_action($gb_main,"ARB_NT","ARB_NT/bug_report");
25ARB::close($gb_main);
Note: See TracBrowser for help on using the repository browser.