Summary | Included libraries | Package variables | Synopsis | Description | General documentation | Methods |
WebCvs | Raw content |
$obj = new Bio::Biblio::PubmedJournalArticle (
# some attributes from MedlineJournalArticle -title => 'Thermal adaptation analyzed by comparison of protein sequences from mesophilic and extremely thermophilic Methanococcus species.', -journal => new Bio::Biblio::MedlineJournal (-issn => '0027-8424'), -volume => 96, -issue => 7, # and some from PubmedArticle -pubmed_history_list => [ { 'pub_status' => 'pubmed', 'date' => '2001-12-1T10:0:00Z' }, { 'pub_status' => 'medline', 'date' => '2002-1-5T10:1:00Z' } ], -pubmed_status => 'ppublish'); --- OR --- $obj = new Bio::Biblio::PubmedJournalArticle; $obj->title ('...'); $obj->journal (new Bio::Biblio::MedlineJournal (-issn => '0027-8424')); $obj->pubmed_status ('ppublish');
_accessible | No description | Code |
_attr_type | No description | Code |
_accessible | description | prev | next | Top |
my ($self, $attr) = @_; return 1 if exists $_allowed{$attr}; foreach my $parent (@ISA) { return 1 if $parent->_accessible ($attr); } } # return an expected type of given $attr}
_attr_type | description | prev | next | Top |
my ($self, $attr) = @_; if (exists $_allowed{$attr}) { return $_allowed{$attr}; } else { foreach my $parent (@ISA) { if ($parent->_accessible ($attr)) { return $parent->_attr_type ($attr); } } } return 'unknown'; } } 1; __END__}
SEE ALSO | Top |
FEEDBACK | Top |
Mailing Lists | Top |
bioperl-l@bioperl.org - General discussion
http://bioperl.org/MailList.shtml - About the mailing lists
Reporting Bugs | Top |
bioperl-bugs@bioperl.org
http://bugzilla.bioperl.org/
AUTHOR | Top |
COPYRIGHT | Top |
DISCLAIMER | Top |