Ticket #506: _logged.amc

File _logged.amc, 1.0 KB (added by westram, 11 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 Apr  2 19:18:30 2014
15BIO::remote_action($gb_main,'ARB_NT','ARB_NT/SEARCH');
16BIO::remote_awar($gb_main,'ARB_NT','tmp/dbquery_spec/by','0');
17BIO::remote_awar($gb_main,'ARB_NT','tmp/dbquery_spec/ere','1');
18BIO::remote_awar($gb_main,'ARB_NT','tmp/dbquery_spec/ere','0');
19BIO::remote_action($gb_main,'ARB_NT','SPECIES_QUERY/SEARCH_spec');
20BIO::remote_awar($gb_main,'ARB_NT','tmp/dbquery_spec/select','AnaAbact');
21BIO::remote_action($gb_main,'ARB_NT','count_marked');
22BIO::remote_action($gb_main,'ARB_NT','unmark_all');
23BIO::remote_action($gb_main,'ARB_NT','ARB_NT/INFO');
24BIO::remote_awar($gb_main,'ARB_NT','tmp/arbdb_scanner_0/mark','1');
25BIO::remote_action($gb_main,'ARB_NT','SPECIES_QUERY/SEARCH_spec');
26BIO::remote_action($gb_main,'ARB_NT','count_marked');
27# recording stopped @ Wed Apr  2 19:39:47 2014
28ARB::close($gb_main);