Ticket #152: multiApp.amc

File multiApp.amc, 1.7 KB (added by westram, 11 years ago)

Multi application 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 @ Wed Apr 10 12:48:38 2013
15BIO::remote_action($gb_main,"ARB_NT","ARB_NT/SEARCH");
16BIO::remote_action($gb_main,"ARB_NT","SPECIES_QUERY/SEARCH_spec");
17BIO::remote_action($gb_main,"ARB_NT","macros");
18# recording stopped @ Wed Apr 10 12:48:46 2013
19# recording resumed @ Wed Apr 10 15:04:24 2013
20BIO::remote_action($gb_main,"ARB_NT","ARB_NT/EDIT_SEQUENCES");
21# recording stopped @ Wed Apr 10 15:05:04 2013
22# recording resumed @ Wed Apr 10 16:18:58 2013
23BIO::remote_action($gb_main,"ARB_NT","arb_dist");
24# recording stopped @ Wed Apr 10 16:19:24 2013
25# recording resumed @ Wed Apr 10 16:19:56 2013
26BIO::remote_action($gb_main,"ARB_DIST","NEIGHBOUR_JOINING/DETECT_CLUSTERS");
27BIO::remote_awar($gb_main,"ARB_DIST","dist/cluster/maxdist","30");
28BIO::remote_action($gb_main,"ARB_DIST","DETECT_CLUSTERS/CALC");
29# recording stopped @ Wed Apr 10 16:20:08 2013
30# recording resumed @ Wed Apr 10 16:31:07 2013
31BIO::remote_awar($gb_main,"ARB_NT","tmp/dbquery_spec/select","TheAcido");
32BIO::remote_awar($gb_main,"ARB_NT","tmp/dbquery_spec/by","0");
33BIO::remote_action($gb_main,"ARB_NT","SPECIES_QUERY/SEARCH_spec");
34BIO::remote_awar($gb_main,"ARB_NT","tmp/dbquery_spec/select","StpGrise");
35BIO::remote_awar($gb_main,"ARB_NT","tmp/dbquery_spec/by","1");
36BIO::remote_action($gb_main,"ARB_NT","SPECIES_QUERY/SEARCH_spec");
37# recording stopped @ Wed Apr 10 16:31:50 2013
38# recording resumed @ Wed Apr 10 15:05:56 2013
39BIO::remote_action($gb_main,"ARB_EDIT4","ARB_EDIT4/SECEDIT");
40# recording stopped @ Wed Apr 10 15:06:59 2013
41ARB::close($gb_main);