| 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 @ Fri May 23 13:19:18 2014 |
|---|
| 15 | BIO::remote_action($gb_main,'ARB_NT','export_seqs'); |
|---|
| 16 | BIO::remote_awar($gb_main,'ARB_NT','tmp/export/form/file_name',$ENV{ARBHOME}.'lib/export/fasta.eft'); |
|---|
| 17 | BIO::remote_awar($gb_main,'ARB_NT','tmp/export_db/file/file_name','noname.fasta'); |
|---|
| 18 | BIO::remote_action($gb_main,'ARB_NT','ARB_EXPORT/GO'); |
|---|
| 19 | BIO::remote_action($gb_main,'ARB_NT','import_seq'); |
|---|
| 20 | BIO::remote_awar($gb_main,'ARB_NT','tmp/import/pattern/file_name','noname.fasta'); |
|---|
| 21 | BIO::remote_action($gb_main,'ARB_NT','ARB_IMPORT/AUTO_DETECT'); |
|---|
| 22 | BIO::remote_action($gb_main,'ARB_NT','ARB_IMPORT/GO'); |
|---|
| 23 | BIO::remote_awar($gb_main,'ARB_NT','tmp/dbquery_spec/ere','2'); |
|---|
| 24 | BIO::remote_awar($gb_main,'ARB_NT','tmp/dbquery_spec/by','2'); |
|---|
| 25 | BIO::remote_awar($gb_main,'ARB_NT','tmp/dbquery_spec/by','1'); |
|---|
| 26 | BIO::remote_action($gb_main,'ARB_NT','SPECIES_QUERY/SEARCH_spec'); |
|---|