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 Sep 3 16:02:25 2014 |
---|
15 | BIO::remote_action($gb_main,'ARB_NT','ARB_NT/EDIT_SEQUENCES'); |
---|
16 | BIO::remote_action($gb_main,'ARB_EDIT4','select_marked'); |
---|
17 | BIO::remote_action($gb_main,'ARB_EDIT4','deselect_all'); |
---|
18 | BIO::remote_action($gb_main,'ARB_NT','ins_del_col'); |
---|
19 | BIO::remote_awar($gb_main,'ARB_NT','tmp/etc/security_level','6'); |
---|
20 | BIO::remote_awar($gb_main,'ARB_NT','insdel/nchar','22'); |
---|
21 | BIO::remote_action($gb_main,'ARB_NT','INSDEL_COLUMNS/INSERT'); |
---|
22 | BIO::remote_action($gb_main,'ARB_NT','INSDEL_COLUMNS/CLOSE'); |
---|
23 | BIO::remote_action($gb_main,'ARB_NT','ARB_NT/EDIT_SEQUENCES'); |
---|
24 | # recording stopped @ Wed Sep 3 16:03:04 2014 |
---|
25 | ARB::close($gb_main); |
---|