Reputation: 67
I have a perl program that I want to convert into a bioperl module. How do I do that? Is there an up-to date tutorial? That's really all I need.
Thank you.
Upvotes: 2
Views: 131
Reputation: 9296
For module naming conventions and other information (whether you're writing it for CPAN or not), start with perlnewmod
. To make an actual module, first install Module::Starter
and use module-starter
command line utility to create your skeleton.
Upvotes: 3