Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

bio::graphics::featuredir(3pm) [debian man page]

Bio::Graphics::FeatureDir(3pm)				User Contributed Perl Documentation			    Bio::Graphics::FeatureDir(3pm)

NAME
Bio::Graphics::FeatureDir -- A directory of feature files and conf files SYNOPSIS
my $fd = Bio::Graphics::FeatureDir->new('/path/to/dir'); $fd->add_file('tracks.conf'); $fd->add_file('foo.gff3'); $fd->add_file('foo.wig'); $fd->add_fh(*STDIN); my $option = $fd->setting('EST' => 'bgcolor'); my @features = $fd->get_features_by_name('M101'); DESCRIPTION
This class implements most of the methods of Bio::Graphics::FeatureFile, but stores the data files and features in a directory indexed by the Bio::DB::SeqFeature::Store::berkeleydb adaptor. Therefore it is fast. Methods $fd = Bio::Graphics::FeatureDir->new('/path/to/dir'); $fd = Bio::Graphics::FeatureDir->new(-dir => '/path/to/dir'); Create a new FeatureDir, based in the indicated directory. In addition to the -dir directory argument, it takes any of the options that can be passed to Bio::Graphics::FeatureFile except for the -file and -text arguments; $db->_init_featuredb Internal method. Initializes the underlying feature database. $db->_init_conf Internal method -- initialize the configuration file(s) $created = $db->_maybe_create_dir($dir) Create $dir and its parents if it doesn't exist. Return true if the directory was created. Throws an exception on filesystem errors. $dir = $db->dir Returns the base directory. $conf = $db->conf Returns the underlying Bio::Graphics::FeatureFile object $db = $db->db Returns the underlying Bio::DB::SeqFeature::Store object $db->add_file($file) Add the file to the directory. Can add files of type .fa, .gff, .gff3, .conf and .ff. $db->add_fh(*FILEHANDLE [,'name']) Add the contents of the indicated filehandle to repository. Name is optional; if provided it will be used as the base for all files created. SEE ALSO
Bio::Graphics::Feature, Bio::Graphics::FeatureFile AUTHOR
Lincoln Stein <lincoln.stein@gmail.com>. Copyright (c) 2009 Ontario Institute for Cancer Research This package and its accompanying libraries is free software; you can redistribute it and/or modify it under the terms of the GPL (either version 1, or at your option, any later version) or the Artistic License 2.0. Refer to LICENSE for the full license text. In addition, please see DISCLAIMER.txt for disclaimers of warranty. POD ERRORS
Hey! The above document had some coding errors, which are explained below: Around line 160: '=item' outside of any '=over' Around line 272: =cut found outside a pod block. Skipping to next block. Around line 274: You forgot a '=back' before '=head1' perl v5.14.2 2012-02-20 Bio::Graphics::FeatureDir(3pm)

Check Out this Related Man Page

Bio::Graphics::Glyph::christmas_arrow(3pm)		User Contributed Perl Documentation		Bio::Graphics::Glyph::christmas_arrow(3pm)

NAME
Bio::Graphics::Glyph::christmas_arrow - The "christmas arrow" glyph SYNOPSIS
See L<Bio::Graphics::Panel> and L<Bio::Graphics::Glyph>. DESCRIPTION
This glyph draws an arrow which has a circle ("christmas ball") dangling at one end. OPTIONS In addition to the common options, the following glyph-specific options are recognized: Option Description Default ------ ----------- ------- -radius Radius of the circle 4 glyph -length Length of the arrow 20 -height Standard option, but 10 important here BUGS
Please report them. SEE ALSO
Bio::Graphics::Panel, Bio::Graphics::Glyph, Bio::Graphics::Glyph::arrow, Bio::Graphics::Glyph::cds, Bio::Graphics::Glyph::crossbox, Bio::Graphics::Glyph::diamond, Bio::Graphics::Glyph::dna, Bio::Graphics::Glyph::dot, Bio::Graphics::Glyph::ellipse, Bio::Graphics::Glyph::extending_arrow, Bio::Graphics::Glyph::generic, Bio::Graphics::Glyph::graded_segments, Bio::Graphics::Glyph::heterogeneous_segments, Bio::Graphics::Glyph::line, Bio::Graphics::Glyph::pinsertion, Bio::Graphics::Glyph::primers, Bio::Graphics::Glyph::rndrect, Bio::Graphics::Glyph::segments, Bio::Graphics::Glyph::ruler_arrow, Bio::Graphics::Glyph::toomany, Bio::Graphics::Glyph::transcript, Bio::Graphics::Glyph::transcript2, Bio::Graphics::Glyph::translation, Bio::Graphics::Glyph::triangle, Bio::DB::GFF, Bio::SeqI, Bio::SeqFeatureI, Bio::Das, GD AUTHOR
Vsevolod (Simon) Ilyushchenko <simonf@cshl.edu>. Copyright (c) 2004 Cold Spring Harbor Laboratory This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See DISCLAIMER.txt for disclaimers of warranty. perl v5.14.2 2012-02-20 Bio::Graphics::Glyph::christmas_arrow(3pm)
Man Page