~ubuntu-branches/ubuntu/raring/bioperl/raring

« back to all changes in this revision

Viewing changes to Bio/Biblio/IO/medlinexml.pm

  • Committer: Bazaar Package Importer
  • Author(s): Charles Plessy
  • Date: 2008-03-18 14:44:57 UTC
  • mfrom: (4 hardy)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: james.westby@ubuntu.com-20080318144457-1jjoztrvqwf0gruk
* debian/control:
  - Removed MIA Matt Hope (dopey) from the Uploaders field.
    Thank you for your work, Matt. I hope you are doing well.
  - Downgraded some recommended package to the 'Suggests' priority,
    according to the following discussion on Upstream's mail list.
    http://bioperl.org/pipermail/bioperl-l/2008-March/027379.html
    (Closes: #448890)
* debian/copyright converted to machine-readable format.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: medlinexml.pm,v 1.6 2003/06/04 08:36:36 heikki Exp $
 
1
# $Id: medlinexml.pm,v 1.9.4.1 2006/10/02 23:10:13 sendu Exp $
2
2
#
3
3
# BioPerl module Bio::Biblio::IO::medlinexml.pm
4
4
#
33
33
Bioperl modules. Send your comments and suggestions preferably to
34
34
the Bioperl mailing list.  Your participation is much appreciated.
35
35
 
36
 
  bioperl-l@bioperl.org              - General discussion
37
 
  http://bioperl.org/MailList.shtml  - About the mailing lists
 
36
  bioperl-l@bioperl.org                  - General discussion
 
37
  http://bioperl.org/wiki/Mailing_lists  - About the mailing lists
38
38
 
39
39
=head2 Reporting Bugs
40
40
 
41
41
Report bugs to the Bioperl bug tracking system to help us keep track
42
 
of the bugs and their resolution. Bug reports can be submitted via
43
 
email or the web:
 
42
of the bugs and their resolution. Bug reports can be submitted via the
 
43
web:
44
44
 
45
 
  bioperl-bugs@bioperl.org
46
 
  http://bugzilla.bioperl.org/
 
45
  http://bugzilla.open-bio.org/
47
46
 
48
47
=head1 AUTHOR
49
48
 
75
74
 
76
75
 
77
76
package Bio::Biblio::IO::medlinexml;
78
 
use vars qw(@ISA $Revision);
79
77
use vars qw(@Citations $Callback $Convert @ObjectStack @PCDataStack);
80
78
use vars qw(%PCDATA_NAMES %SIMPLE_TREATMENT %POP_DATA_AND_PEEK_OBJ %POP_OBJ_AND_PEEK_OBJ);
81
79
use vars qw(%POP_AND_ADD_ELEMENT %POP_AND_ADD_DATA_ELEMENT);
82
80
 
83
81
use strict;
84
82
 
85
 
use Bio::Biblio::IO;
86
83
use XML::Parser;
87
84
 
88
 
@ISA = qw(Bio::Biblio::IO);
89
 
 
90
 
BEGIN {
91
 
    $Revision = q$Id: medlinexml.pm,v 1.6 2003/06/04 08:36:36 heikki Exp $;
92
 
}
 
85
use base qw(Bio::Biblio::IO);
93
86
 
94
87
# -----------------------------------------------------------------------------
95
88