I've followed the various tutorials, and have followed the instructions on Module::Starter, but can't make a working module. I'm pretty new to Perl and I'm not a real programmer.
Basically, I'm making a Bioperl module. It's supposed to be in the package Bio::DB::CCDS. It has a few global variables and doesn't use a "$self" variable. Does it need to? I'm trying to use a few global variables instead.
The Bio directory and DB directory already exist.
I'm using Exporter like this:
use Exporter;
use vars qw($VERSION @ISA @EXPORT);
$VERSION = 1.00;
@ISA = qw(Exporter);
@EXPORT = qw(new Get_CCDS_IDs Get_gene gene_coordinates Get_exons
+ Write_ccds Get_strand Gene_id Gene_count);
Should @EXPORT use qw? Should each function named in it have a & sign before it?
How do I create a working module and put it in the correct directory? How would I have to modify the Makefile? I'm using ubuntu.
Thank you for your help.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.