Skip to content

Commit

Permalink
worked on internal documentation of options
Browse files Browse the repository at this point in the history
  • Loading branch information
lstein committed Mar 20, 2009
1 parent 810704c commit b608959
Show file tree
Hide file tree
Showing 15 changed files with 926 additions and 45 deletions.
1 change: 1 addition & 0 deletions Build.PL
Expand Up @@ -24,6 +24,7 @@ my $build = Module::Build->new(
'scripts/frend.pl',
'scripts/search_overview.pl',
'scripts/render_msa.pl',
'scripts/glyph_help.pl',
],
create_makefile_pl => 'passthrough',
build_class => 'Module::Build',
Expand Down
4 changes: 3 additions & 1 deletion lib/Bio/Graphics.pm
Expand Up @@ -83,7 +83,8 @@ Bio::Graphics - Generate GD images of Bio::Seq objects
=head1 DESCRIPTION
Please see L<Bio::Graphics::Panel> for the full interface.
Please see L<Bio::Graphics::Panel> for the full interface. Also try
the script glyph_help.pl for quick help on glyphs and their options.
=head1 SEE ALSO
Expand All @@ -95,6 +96,7 @@ L<Bio::Das>,
L<Bio::DB::GFF::Feature>,
L<Ace::Sequence>,
L<GD>
L<glyph_help.pl>
=head1 FEEDBACK
Expand Down
4 changes: 3 additions & 1 deletion lib/Bio/Graphics/FeatureFile.pm
@@ -1,6 +1,6 @@
package Bio::Graphics::FeatureFile;

# $Id: FeatureFile.pm,v 1.10 2009-03-14 16:22:21 lstein Exp $
# $Id: FeatureFile.pm,v 1.11 2009-03-20 13:03:01 lstein Exp $
# This package parses and renders a simple tab-delimited format for features.
# It is simpler than GFF, but still has a lot of expressive power.
# See __END__ for the file format
Expand Down Expand Up @@ -616,6 +616,8 @@ sub parse_file {
my $self = shift;
my $file = shift;

$file =~ s/(\s)/\\$1/; # escape whitespace from glob expansion

for my $f (glob($file)) {
my $fh = IO::File->new($f) or return;
my $cwd = getcwd();
Expand Down

0 comments on commit b608959

Please sign in to comment.