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 @ Wed Jul 9 14:04:57 2014 |
---|
15 | BIO::remote_action($gb_main,'ARB_NT','probe_match'); |
---|
16 | BIO::remote_action($gb_main,'ARB_NT','PROBE_MATCH/CURR_PT_SERVER'); |
---|
17 | BIO::remote_awar($gb_main,'ARB_NT','nt/pt_server','6'); |
---|
18 | BIO::remote_awar($gb_main,'ARB_NT','nt/target_string','ACGTT'); |
---|
19 | BIO::remote_action($gb_main,'ARB_NT','PROBE_MATCH/MATCH'); |
---|
20 | BIO::remote_action($gb_main,'ARB_NT','PROBE_MATCH/PRINT'); |
---|
21 | BIO::remote_awar($gb_main,'ARB_NT','tmp/aprint/printto','3'); |
---|
22 | BIO::remote_action($gb_main,'ARB_NT','PRINT/PRINT'); |
---|
23 | # BIO::remote_action($gb_main,'ARB_NT','macros'); |
---|
24 | # recording stopped @ Wed Jul 9 14:05:19 2014 |
---|
25 | ARB::close($gb_main); |
---|