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 @ Fri Nov 22 09:07:09 2013 |
---|
15 | BIO::remote_action($gb_main,"ARB_NT","1testmask"); |
---|
16 | BIO::remote_action($gb_main,"ARB_NT","ARB_NT/SEARCH"); |
---|
17 | BIO::remote_awar($gb_main,"ARB_NT","tmp/dbquery_spec/query_0","*lac*"); |
---|
18 | BIO::remote_action($gb_main,"ARB_NT","SPECIES_QUERY/SEARCH_spec"); |
---|
19 | BIO::remote_awar($gb_main,"ARB_NT","tmp/dbquery_spec/select","LacVirid"); |
---|
20 | BIO::remote_awar($gb_main,"ARB_NT","tmp/inputMask/edit_enabled","1"); |
---|
21 | BIO::remote_awar($gb_main,"ARB_NT","/tmp/input_masks/test_mask/handler_author_3","xxx"); |
---|
22 | # recording stopped @ Fri Nov 22 09:07:54 2013 |
---|
23 | # recording resumed @ Fri Nov 22 09:09:06 2013 |
---|
24 | BIO::remote_action($gb_main,"ARB_NT","ARB_NT/1testmask"); |
---|
25 | # recording stopped @ Fri Nov 22 09:09:33 2013 |
---|
26 | ARB::close($gb_main); |
---|