Ticket #573: _logged.amc

File _logged.amc, 832 bytes (added by westram, 10 years ago)
Line 
1#!/usr/bin/perl
2use strict;
3use warnings;
4
5use lib "$ENV{'ARBHOME'}/lib/";
6use ARB;
7
8my $gb_main = ARB::open(":","r");
9if (not $gb_main) {
10  my $error = ARB::await_error();
11  die "$error";
12}
13
14# recording started @ Wed Jul  9 14:04:57 2014
15BIO::remote_action($gb_main,'ARB_NT','probe_match');
16BIO::remote_action($gb_main,'ARB_NT','PROBE_MATCH/CURR_PT_SERVER');
17BIO::remote_awar($gb_main,'ARB_NT','nt/pt_server','6');
18BIO::remote_awar($gb_main,'ARB_NT','nt/target_string','ACGTT');
19BIO::remote_action($gb_main,'ARB_NT','PROBE_MATCH/MATCH');
20BIO::remote_action($gb_main,'ARB_NT','PROBE_MATCH/PRINT');
21BIO::remote_awar($gb_main,'ARB_NT','tmp/aprint/printto','3');
22BIO::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
25ARB::close($gb_main);