Ticket #506: _logged_fixed.amc

File _logged_fixed.amc, 792 bytes (added by westram, 7 years ago)

marking works with this macro

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 @ Sun Sep  3 13:47:33 2017
15BIO::remote_action($gb_main,'ARB_NT','ARB_NT/SEARCH');
16BIO::remote_action($gb_main,'ARB_NT','SPECIES_QUERY/SEARCH_spec');
17BIO::remote_awar($gb_main,'ARB_NT','tmp/dbquery_spec/select','ArtPolyc');
18BIO::remote_action($gb_main,'ARB_NT','count_marked');
19BIO::remote_action($gb_main,'ARB_NT','SPECIES_QUERY/popinfo');
20BIO::remote_awar($gb_main,'ARB_NT','tmp/dbscan/species/mark','1');
21BIO::remote_action($gb_main,'ARB_NT','count_marked');
22# BIO::remote_action($gb_main,'ARB_NT','macros');
23# recording stopped @ Sun Sep  3 13:48:12 2017
24ARB::close($gb_main);