bin/bp_biofetch_genbank_proxy: move to Bio-DB-NCBIHelper
[bioperl-live.git] / bin / bp_fetch
blob7a07193fc13d0e05b86ac5f78c3dc73522f09470
1 #!/usr/bin/perl
3 =head1 NAME
5 bp_fetch.pl - fetches sequences from bioperl indexed databases
7 =head1 SYNOPSIS
9 bp_fetch.pl swiss:ROA1_HUMAN
11 bp_fetch.pl net::genbank:JX295726
13 bp_fetch.pl net::genpept:ROA1_HUMAN
15 bp_fetch.pl ace::myserver.somewhere.edu,21000:X56676
17 bp_fetch.pl -fmt GCG swiss:ROA1_HUMAN
19 =head1 DESCRIPTION
21 Fetches sequences using the DB access systems in Bioperl. The most
22 common use of this is to bp_fetch sequences from bioperl indices built
23 using bpindex.pl, or to fetch sequences from the NCBI website
25 The format for retrieving sequences is delibrately like the
26 GCG/EMBOSS format like the following:
28 db:name
30 with the potential of putting in a 'meta' database type, being
32 meta::db:name
34 The meta information can be one of three types
36 local - local indexed flat file database
37 net - networked http: based database
38 ace - ACeDB database
40 This information defaults to 'local' for database names with no meta
41 db information
43 =head1 OPTIONS
45 -fmt <format> - Output format
46 Fasta (default), EMBL, Raw, swiss or GCG
47 -acc - string is an accession number, not an
48 id.
50 options only for expert use
52 -dir <dir> - directory to find the index files
53 (overrides BIOPERL_INDEX environment variable)
54 -type <type> - type of DBM file to open
55 (overrides BIOPERL_INDEX_TYPE environment variable)
57 =head1 ENVIRONMENT
59 bp_index and bp_fetch coordinate where the databases lie using the
60 environment variable BIOPERL_INDEX. This can be overridden using the
61 -dir option. The index type (SDBM or DB_File or another index file)
62 is controlled by the BIOPERL_INDEX_TYPE variable. This defaults to
63 SDBM_File
65 =head1 USING IT YOURSELF
67 bp_fetch is a wrapper around the bioperl modules which support
68 the Bio::DB::BioSeqI abstract interface. These include:
70 Author Code
72 James Gilbert - Fasta indexer, Abstract indexer
73 Aaron Mackay - GenBank and GenPept DB access
74 Ewan Birney - EMBL .dat indexer
75 Many people - SeqIO code
77 These modules can be used directly, which is far better than using
78 this script as a system call or a pipe to read from. Read the
79 source code for bp_fetch to see how it is used.
81 =head1 EXTENDING IT
83 bp_fetch uses a number of different modules to provide access to
84 databases. Any module which subscribes to the Bio::DB::BioSeqI
85 interface can be used here. For flat file indexers, this is
86 best done by extending Bio::Index::Abstract, as is done in
87 Bio::Index::EMBL and Bio::Index::Fasta. For access to other
88 databases you will need to roll your own interface.
90 For new output formats, you need to add a new SeqIO module. The
91 easiest thing is to look at Bio::SeqIO::Fasta and figure out
92 how to hack it for your own format (call it something different
93 obviously).
95 =head1 FEEDBACK
97 =head2 Mailing Lists
99 User feedback is an integral part of the evolution of this and other
100 Bioperl modules. Send your comments and suggestions preferably to
101 the Bioperl mailing list. Your participation is much appreciated.
103 bioperl-l@bioperl.org - General discussion
104 http://bioperl.org/wiki/Mailing_lists - About the mailing lists
106 =head2 Reporting Bugs
108 Report bugs to the Bioperl bug tracking system to help us keep track
109 of the bugs and their resolution. Bug reports can be submitted via the
110 web:
112 https://github.com/bioperl/bioperl-live/issues
114 =head1 AUTHOR
116 Ewan Birney E<lt>birney@ebi.ac.ukE<gt>
118 =cut
120 use strict;
121 use warnings;
122 use Getopt::Long;
124 use Bio::Index::EMBL;
125 use Bio::Index::Fasta;
126 use Bio::Index::GenBank;
127 use Bio::Index::SwissPfam;
128 use Bio::Index::Swissprot;
129 use Bio::SeqIO;
132 # Start processing the command line
135 my $dir = $ENV{'BIOPERL_INDEX'};
136 my $type = $ENV{'BIOPERL_INDEX_TYPE'};
137 my $fmt = 'Fasta';
138 my $useacc = 0;
139 my $ret = GetOptions('d|dir=s' => \$dir,
140 'f|fmt=s' => \$fmt ,
141 't|type=s' => \$type ,
142 'acc!' => \$useacc);
145 # print pod documentation if we have no arguments
148 exec('perldoc',$0) unless @ARGV;
150 my ($isnet,$db,$dbobj,$id,$seq,$seqio,$out,$meta);
153 # Reset the type if needed
156 if( $type ) {
157 $Bio::Index::Abstract::USE_DBM_TYPE = $type;
161 # Build at run time the SeqIO output
163 if ( $fmt !~ /swisspfam|pfam/ ) {
164 $out = Bio::SeqIO->new(-fh => \*STDOUT , -format => $fmt);
168 # Main loop over remaining arguments
171 for my $arg ( @ARGV ) {
172 $_= $arg;
173 # strip out meta:: if there
174 if ( /^(\w+)::/ ) {
175 $meta = $1;
176 s/^(\w+):://;
177 } else {
178 $meta = 'local';
181 # parse to db:id
183 /^(\S+)\:(\S+)$/ || do { warn "$_ is not parsed as db:name\n"; next; };
184 ($db,$id) = split/:/,$_,2;
186 # the eval block catches exceptions if they occur
187 # in the code in the block. The exception goes in $@
190 eval {
191 SWITCH : {
192 $_ = $meta;
193 /^net$/ && do {
194 if ( $db =~ /genbank/i ) {
195 require Bio::DB::GenBank;
196 $dbobj = Bio::DB::GenBank->new(-format => $fmt);
197 } elsif ( $db =~ /genpept/i ) {
198 require Bio::DB::GenPept;
199 $dbobj = Bio::DB::GenPept->new();
200 } elsif ( $db =~ /embl/i ) {
201 require Bio::DB::EMBL;
202 $dbobj = Bio::DB::EMBL->new();
203 } else {
204 die "Net database $db not available";
206 last SWITCH;
208 /^ace$/ && do {
209 # yank in Bio::DB::Ace at runtime
210 eval {
211 require Bio::DB::Ace;
213 if ( $@ ) {
214 die "Unable to load Bio::DB::Ace for ace::$db\n\n$@\n";
217 # db is server,port
218 my ($server,$port);
220 $db =~ /(\S+)\,(\d+)/ || die "$db is not server.name,port for acedb database";
221 $server = $1;
222 $port = $2;
223 # print STDERR "Connecting to $server,$port\n";
225 $dbobj = Bio::DB::Ace->new(-host => $server, -port => $port);
226 last SWITCH;
228 /^local$/ && do {
229 if ( !$dir ) {
230 die "\nNo directory specified for index\nDirectory must be specified by the environment variable BIOPERL_INDEX or --dir option\ngo bp_index with no arguments for more help\n\n";
234 # $db gets re-blessed to the correct index when
235 # it is made from the abstract class. Cute eh?
238 $dbobj = Bio::Index::Abstract->new("$dir/$db");
239 last SWITCH;
241 die "Meta database $meta is not valid";
243 }; # end of eval to get db
244 if ( $@ ) {
245 warn("Database $db in $arg is not loadable. Skipping\n\nError $@");
246 next;
250 # We expect the databases to adhere to the BioSeqI
251 # the sequence index databases and the GenBank/GenPept do already
253 if ( $dbobj->isa("Bio::Index::SwissPfam") ) {
254 my $seq = $dbobj->fetch($id);
255 if ( $seq ) {
256 my $started;
257 while ( <$seq> ) {
258 last if ( /^\s+$/ );
259 print;
261 } else {
262 warn("Cannot find $id\n");
264 next;
266 if ( ! $dbobj->isa('Bio::DB::RandomAccessI') ) {
267 warn("$db in $arg does not inherit from Bio::DB::RandomAccessI, so is not expected to work under the DB guidlines. Going to try it anyway");
269 eval {
270 if ( $useacc == 0 ) {
271 $seq = $dbobj->get_Seq_by_id($id);
272 } else {
273 $seq = $dbobj->get_Seq_by_acc($id);
276 if ( $@ ) {
277 warn("Sequence $id in Database $db in $arg is not loadable. Skipping.\n\nError $@");
278 next;
279 } elsif ( !defined $seq ) {
280 warn("Sequence $id in Database $db is not present\n");
281 next;
283 $out->write_seq($seq);