1 | #!/usr/arb/bin/perl |
---|
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/SEARCH_SPECIES"); |
---|
13 | BIO::remote_awar($gb_main,"ARB_NT","tmp/arbdb_query_0/ere","1"); |
---|
14 | BIO::remote_awar($gb_main,"ARB_NT","tmp/arbdb_query_0/ere","0"); |
---|
15 | BIO::remote_awar($gb_main,"ARB_NT","tmp/arbdb_query_0/by","2"); |
---|
16 | BIO::remote_awar($gb_main,"ARB_NT","tmp/arbdb_query_0/by","1"); |
---|
17 | BIO::remote_awar($gb_main,"ARB_NT","tmp/arbdb_query_0/query","a*"); |
---|
18 | BIO::remote_awar($gb_main,"ARB_NT","tmp/arbdb_query_0/key","acc"); |
---|
19 | BIO::remote_awar($gb_main,"ARB_NT","tmp/arbdb_query_0/key","name"); |
---|
20 | BIO::remote_action($gb_main,"ARB_NT","SPECIES_QUERY/SEARCH"); |
---|
21 | BIO::remote_action($gb_main,"ARB_NT","SPECIES_QUERY/MARK_LISTED_UNMARK_REST"); |
---|
22 | BIO::remote_action($gb_main,"ARB_NT","SPECIES_QUERY/CLOSE"); |
---|
23 | ARB::close($gb_main); |
---|