Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

biblio::citation::parser::utils(3pm) [debian man page]

Biblio::Citation::Parser::Utils(3pm)			User Contributed Perl Documentation		      Biblio::Citation::Parser::Utils(3pm)

NAME
Biblio::Citation::Parser::Utils - OpenURL utility functions DESCRIPTION
This module contains methods for the parsing of reference metadata into OpenURLs. Although we have aimed to make it 1.0 compliant, there may well be errors (please let us know if there are!). METHODS
$openurl_hash = Biblio::Citation::Parser::Utils::trim_openurl($openurl) This method takes a hash of metadata, and returns a hash that contains only valid OpenURL fields. $openurl_hash = Biblio::Citation::Parser::Utils::decompose_openurl($openurl) This method aims to enrich an OpenURL metadata hash by applying various parsing techniques to the fields. It decomposes dates into years, months, and days if possible, fills in the appropriate fields if SICIs are present, and ensures URLs, ISBNs, etc, are valid. It returns a pointer to a hash containing the modified metadata, and an array of errors (if any). $openurl = Biblio::Citation::Parser::create_openurl($metadata) This method creates and returns an OpenURL from a metadata hash. No base URLs are prepended to this, so this should be done before using it as a link. URI::OpenURL should be used to generate OpenURLs in place of this function. $valid_isbn = Biblio::Citation::Parser::Utils::isbn_check(@isbn_chars) This is a simple function that takes an array of ISBN characters, and returns true if it is a valid ISBN. $sici_hash = Biblio::Citation::Parser::Utils::parse_sici($sici) This function takes a SICI string, and returns a hash of information parsed from it, including date information, issn numbers, etc. $bici_hash = Biblio::Citation::Parser::Utils::parse_bici($bici) This is not yet implemented, but will eventually be the BICI alternative for parse_sici. $escaped_url = ParaTools::Utils::url_escape($string) Simple function to convert a string into an encoded URL (i.e. spaces to %20, etc). Takes the unencoded URL as a parameter, and returns the encoded version. AUTHOR
Mike Jewell <moj@ecs.soton.ac.uk> perl v5.10.1 2009-11-15 Biblio::Citation::Parser::Utils(3pm)

Check Out this Related Man Page

Bio::Biblio::BookArticle(3pm)				User Contributed Perl Documentation			     Bio::Biblio::BookArticle(3pm)

NAME
Bio::Biblio::BookArticle - Representation of a book article SYNOPSIS
$obj = Bio::Biblio::BookArticle->new(-identifier => '123abc', -book => Bio::Biblio::Book->new()); #--- OR --- $obj = Bio::Biblio::BookArticle->new(); $obj->book (Bio::Biblio::Book->new()); DESCRIPTION
A storage object for a book article. See its place in the class hierarchy in http://www.ebi.ac.uk/~senger/openbqs/images/bibobjects_perl.gif Attributes The following attributes are specific to this class (however, you can also set and get all attributes defined in the parent classes): book type: Bio::Biblio::Book SEE ALSO
o OpenBQS home page: http://www.ebi.ac.uk/~senger/openbqs/ o Comments to the Perl client: http://www.ebi.ac.uk/~senger/openbqs/Client_perl.html FEEDBACK
Mailing Lists User feedback is an integral part of the evolution of this and other Bioperl modules. Send your comments and suggestions preferably to the Bioperl mailing list. Your participation is much appreciated. bioperl-l@bioperl.org - General discussion http://bioperl.org/wiki/Mailing_lists - About the mailing lists Support Please direct usage questions or support issues to the mailing list: bioperl-l@bioperl.org rather than to the module maintainer directly. Many experienced and reponsive experts will be able look at the problem and quickly address it. Please include a thorough description of the problem with code and data examples if at all possible. Reporting Bugs Report bugs to the Bioperl bug tracking system to help us keep track of the bugs and their resolution. Bug reports can be submitted via the web: https://redmine.open-bio.org/projects/bioperl/ AUTHORS
Heikki Lehvaslaiho (heikki-at-bioperl-dot-org), Martin Senger (senger@ebi.ac.uk) COPYRIGHT
Copyright (c) 2002 European Bioinformatics Institute. All Rights Reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. DISCLAIMER
This software is provided "as is" without warranty of any kind. perl v5.14.2 2012-03-02 Bio::Biblio::BookArticle(3pm)
Man Page