[Bioperl-l] Finding modules on hard disk
Marc Logghe
Marc.Logghe at devgen.com
Wed Sep 17 10:51:33 EDT 2003
> -----Original Message-----
> From: Chet Langin [mailto:clangin at siu.edu]
> Sent: Wednesday, September 17, 2003 4:32 PM
> To: bioperl-l at bioperl.org
> Subject: [Bioperl-l] Finding modules on hard disk
>
>
> When looking at the code for a module, I would like
> to be able to quickly find and look at another module
> which might be used by the one I'm looking at.
>
> For example, if the code I'm looking at has...
>
> use AnotherModule;
>
when you want to look at the documentation:
perldoc AnotherModule (e.g. perldoc Bio::Seq)
when you want to see the actual code in the module:
perldoc -m AnotherModule
when you want to know where the file is:
perldoc -l AnotherModule
HTH,
Marc
More information about the Bioperl-l
mailing list