Yes. It requires an Apache server. If you can't use Apache, then use this to get going. I pulled it from the docs.
#!/usr/bin/perl use strict; use warnings; use Bio::DB::GFF; use Bio::Graphics::Panel; use Bio::DB::GFF::Aggregator; use Bio::Graphics::Glyph::xyplot; my $agg = Bio::DB::GFF::Aggregator->new(-method => 'repeat_density', - +sub_parts => 'density:repeat'); my $db = Bio::DB::GFF->new(-dsn => 'mydatabase', -aggregators => $agg); my $segment = $db->segment('Chr1'); my $features = $segment->features('repeat_density'); my $panel = Bio::Graphics::Panel::->new(-pad_left=>40,-pad_right=>40); $panel->add_track($features, -glyph => 'xyplot', -graph_type => 'points', -point_symbol => 'disc', -point_radius => 4, -scale => 'both', -height => 200, );

In reply to Re^3: Bioperl newbie - Bio::Graphics::Glyph::xyplot by Khen1950fx
in thread Bioperl newbie - Bio::Graphics::Glyph::xyplot by daverave

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.