adur has asked for the wisdom of the Perl Monks concerning the following question:
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.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);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: I really need help making a module.
by 1nickt (Canon) on Aug 19, 2015 at 04:20 UTC | |
|
Re: I really need help making a module.
by james28909 (Deacon) on Aug 19, 2015 at 03:55 UTC | |
by adur (Initiate) on Aug 19, 2015 at 16:15 UTC | |
|
Re: I really need help making a module.
by Anonymous Monk on Aug 19, 2015 at 04:03 UTC | |
by adur (Initiate) on Aug 19, 2015 at 16:09 UTC | |
by adur (Initiate) on Aug 19, 2015 at 16:11 UTC | |
|
Re: I really need help making a module.
by GotToBTru (Prior) on Aug 20, 2015 at 12:38 UTC |