|
NAMEBio::Tools::GuessSeqFormat - Module for determining the sequence format of the contents of a file, a string, or through a filehandle.SYNOPSIS# To guess the format of a flat file, given a filename: my $guesser = Bio::Tools::GuessSeqFormat->new( -file => $filename ); my $format = $guesser->guess; # To guess the format from an already open filehandle: my $guesser = Bio::Tools::GuessSeqFormat->new( -fh => $filehandle ); my $format = $guesser->guess; # The filehandle will be returned to its original position. Note that this # filehandle can be STDIN. # To guess the format of one or several lines of text (with # embedded newlines): my $guesser = Bio::Tools::GuessSeqFormat->new( -text => $linesoftext ); my $format = $guesser->guess; # To create a Bio::Tools::GuessSeqFormat object and set the # filename, filehandle, or line to parse afterwards: my $guesser = Bio::Tools::GuessSeqFormat->new(); $guesser->file($filename); $guesser->fh($filehandle); $guesser->text($linesoftext); # To guess in one go, given e.g. a filename: my $format = Bio::Tools::GuessSeqFormat->new( -file => $filename )->guess; DESCRIPTIONBio::Tools::GuessSeqFormat tries to guess the format ("swiss", "pir", "fasta" etc.) of the sequence or MSA in a file, in a scalar, or through a filehandle.The guess() method of a Bio::Tools::GuessSeqFormat object will examine the data, line by line, until it finds a line to which only one format can be assigned. If no conclusive guess can be made, undef is returned. If the Bio::Tools::GuessSeqFormat object is given a filehandle, e.g. STDIN, it will be restored to its original position on return from the guess() method. FormatsTests are currently implemented for the following formats:
FEEDBACKMailing ListsUser feedback is an integral part of the evolution of this and other Bioperl modules. Send your comments and suggestions preferably to one of the Bioperl mailing lists. Your participation is much appreciated.bioperl-l@bioperl.org - General discussion http://bioperl.org/wiki/Mailing_lists - About the mailing lists SupportPlease 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 BugsReport bugs to the Bioperl bug tracking system to help us keep track the bugs and their resolution. Bug reports can be submitted via the web:https://github.com/bioperl/bioperl-live/issues AUTHORAndreas Kähäri, andreas.kahari@ebi.ac.ukCONTRIBUTORSHeikki Lehväslaiho, heikki-at-bioperl-dot-org Mark A. Jensen, maj-at-fortinbras-dot-usMETHODSMethods available to Bio::Tools::GuessSeqFormat objects are described below. Methods with names beginning with an underscore are considered to be internal.newTitle : new Usage : $guesser = Bio::Tools::GuessSeqFormat->new( ... ); Function : Creates a new object. Example : See SYNOPSIS. Returns : A new object. Arguments : -file The filename of the file whose format is to be guessed, e.g. STDIN, or -fh An already opened filehandle from which a text stream may be read, or -text A scalar containing one or several lines of text with embedded newlines. If more than one of the above arguments are given, they are tested in the order -text, -file, -fh, and the first available argument will be used. fileTitle : file Usage : $guesser->file($filename); $filename = $guesser->file; Function : Gets or sets the current filename associated with an object. Returns : The new filename. Arguments : The filename of the file whose format is to be guessed. A call to this method will clear the current filehandle and the current lines of text associated with the object. fhTitle : fh Usage : $guesser->fh($filehandle); $filehandle = $guesser->fh; Function : Gets or sets the current filehandle associated with an object. Returns : The new filehandle. Arguments : An already opened filehandle from which a text stream may be read. A call to this method will clear the current filename and the current lines of text associated with the object. textTitle : text Usage : $guesser->text($linesoftext); $linesofext = $guesser->text; Function : Gets or sets the current text associated with an object. Returns : The new lines of texts. Arguments : A scalar containing one or several lines of text, including embedded newlines. A call to this method will clear the current filename and the current filehandle associated with the object. guessTitle : guess Usage : $format = $guesser->guess; @format = $guesser->guess; # if given a line of text Function : Guesses the format of the data accociated with the object. Returns : A format string such as "swiss" or "pir". If a format can not be found, undef is returned. Arguments : None. If the object is associated with a filehandle, the position of the filehandle will be returned to its original position before the method returns. HELPER SUBROUTINESAll helper subroutines will, given a line of text and the line number of the same line, return 1 if the line possibly is from a file of the type that they perform a test of.A zero return value does not mean that the line is not part of a certain type of file, just that the test did not find any characteristics of that type of file in the line. _possibly_aceFrom bioperl test data, and from "http://www.isrec.isb-sib.ch/DEA/module8/B_Stevenson/Practicals/transcriptome_recon/transcriptome_recon.html"._possibly_blastFrom various blast results. _possibly_bowtieContributed by kortsch._possibly_clustalwFrom "http://www.ebi.ac.uk/help/formats.html"._possibly_codataFrom "http://www.ebi.ac.uk/help/formats.html"._possibly_emblFrom "http://www.ebi.ac.uk/embl/Documentation/User_manual/usrman.html#3.3"._possibly_fastaFrom "http://www.ebi.ac.uk/help/formats.html"._possibly_fastqFrom bioperl test data._possibly_fastxyFrom bioperl test data._possibly_gameFrom bioperl testdata._possibly_gcgFrom bioperl, Bio::SeqIO::gcg._possibly_gcgblastFrom bioperl testdata._possibly_gcgfastaFrom bioperl testdata._possibly_gdeFrom "http://www.ebi.ac.uk/help/formats.html"._possibly_genbankFrom "http://www.ebi.ac.uk/help/formats.html". Format of [apparantly optional] file header from "http://www.umdnj.edu/rcompweb/PA/Notes/GenbankFF.htm". (TODO: dead link)_possibly_genscanFrom bioperl test data._possibly_gffFrom bioperl test data._possibly_hmmerFrom bioperl test data._possibly_nexusFrom "http://paup.csit.fsu.edu/nfiles.html"._possibly_maseFrom bioperl test data. More detail from "http://www.umdnj.edu/rcompweb/PA/Notes/GenbankFF.htm" (TODO: dead link)_possibly_megaFrom the ensembl broswer (AlignView data export)._possibly_msfFrom "http://www.ebi.ac.uk/help/formats.html"._possibly_phrapFrom "http://biodata.ccgb.umn.edu/docs/contigimage.html". (TODO: dead link) From "http://genetics.gene.cwru.edu/gene508/Lec6.htm". (TODO: dead link) From bioperl test data ("*.ace.1" files)._possibly_pirFrom "http://www.ebi.ac.uk/help/formats.html". The ".,()" spotted in bioperl test data._possibly_pfamFrom bioperl test data._possibly_phylipFrom "http://www.ebi.ac.uk/help/formats.html". Initial space allowed on first line (spotted in ensembl AlignView exported data)._possibly_prodomFrom "http://prodom.prabi.fr/prodom/current/documentation/data.php"._possibly_rawFrom "http://www.ebi.ac.uk/help/formats.html"._possibly_rsfFrom "http://www.ebi.ac.uk/help/formats.html"._possibly_selexFrom "http://www.ebc.ee/WWW/hmmer2-html/node27.html".Assuming presence of Selex file header. Data exported by Bioperl on Pfam and Selex formats are identical, but Pfam file only holds one alignment. _possibly_stockholmFrom bioperl test data._possibly_swissFrom "http://ca.expasy.org/sprot/userman.html#entrystruc"._possibly_tabContributed by Heikki._possibly_vcfFrom "http://www.1000genomes.org/wiki/analysis/vcf4.0".Assumptions made about sanity - format and date lines are line 1 and 2 respectively. This is not specified in the format document.
Visit the GSP FreeBSD Man Page Interface. |