bump version
[bioperl-network.git] / Bio / Network / IO / psi / intact.pm
blob3cecfa0c23d6682c93a20fea66f2803f36971bc4
1 # $Id$
3 # BioPerl module for Bio::Network::IO::psi::intact
5 # You may distribute this module under the same terms as perl itself
6 # POD documentation - main docs before the code
8 =head1 NAME
10 Bio::Network::IO::psi::intact - module to handle variations
11 in PSI MI format from the IntAct database
13 =head1 SYNOPSIS
15 Do not use this module directly, use Bio::Network::IO. For example:
17 my $io = Bio::Network::IO->new(-format => 'psi',
18 -source => 'intact',
19 -file => 'data.xml');
21 my $network = $io->next_network;
23 =head1 DESCRIPTION
25 There are slight differences between PSI MI files offered by various public
26 databases. The Bio::Network::IO::psi* modules have methods for handling
27 these variations. To load a module like this use the optional "-source"
28 argument when creating a new Bio::Network::IO object.
30 =head1 FEEDBACK
32 =head2 Mailing Lists
34 User feedback is an integral part of the evolution of this and other
35 Bioperl modules. Send your comments and suggestions preferably to one
36 of the Bioperl mailing lists. Your participation is much appreciated.
38 bioperl-l@bioperl.org - General discussion
39 http://bioperl.org/wiki/Mailing_lists - About the mailing lists
41 =head2 Support
43 Please direct usage questions or support issues to the mailing list:
45 L<bioperl-l@bioperl.org>
47 rather than to the module maintainer directly. Many experienced and
48 reponsive experts will be able look at the problem and quickly
49 address it. Please include a thorough description of the problem
50 with code and data examples if at all possible.
52 =head2 Reporting Bugs
54 Report bugs to the Bioperl bug tracking system to help us keep track
55 the bugs and their resolution. Bug reports can be submitted via the
56 web:
58 http://bugzilla.open-bio.org/
60 =head1 AUTHORS
62 Brian Osborne bosborne at alum.mit.edu
64 =cut
66 package Bio::Network::IO::psi::intact;
67 use strict;
68 use vars qw(@ISA $FAC @EXPORT);
69 use Bio::Network::IO;
70 use Bio::Annotation::DBLink;
71 use Bio::Annotation::Collection;
73 @EXPORT = qw(&);
75 =head2
77 Name :
78 Purpose :
79 Arguments :
80 Returns :
81 Usage :
83 =cut
87 __END__