Bioperl is amazingly useful, but it isn't known for its ease-of-use, at least when getting started. I would highly recommend starting with one of the HOWTOs. I would suggest that the most useful are the "beginners", "SearchIO (blast parsing)", "SeqIO (Sequence reading/format manipulation)", and "Feature-Annotation".

That said, you have "partially" working code. "How do I get further along?" you ask.

I make heavy use of the perl debugger. Just run your script using perl -d script.pl Then, hit keep hitting n and RETURN to go to the next line. When you get to the line after the variable whose contents you want to know, just type: x @f to see the Data::Dumper version of what is in @f, including what class is associated with the various things in @f.

Hope that helps,
Sean

In reply to Re: Bioperl + perl modules by srdst13
in thread Bioperl + perl modules by Anonymous Monk

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.