cpan
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 245
CPAN::Cache 0.02
CPAN::Cache is a Perl module abstract locally-cached logical subset of a CPAN mirror. more>>
CPAN::Cache is a Perl module abstract locally-cached logical subset of a CPAN mirror.
There have been any number of scripts and modules written that contain as part of their functionality some form of locally stored partial mirror of the CPAN dataset.
CPAN::Cache does the same thing, except that in addition it has the feature that the downloading and storage of CPAN data is all that it does, so it should not introduce any additional dependencies or bloat, and should be much easier to reuse that existing modules, which generally are more task-specific.
The intent is that this module will be usable by everything that is in the business of pulling modules from CPAN, storing them locally, and doing something with them.
In this way, it really does little other than mirror data from a remote URI, except that CPAN::Cache also provides some additional intelligence about which files are and are not static (will never change) which arent, and is typed specifically as a mirror of CPAN, instead of any other sort of mirror.
By building this module as a seperate distribution, it is hoped we can improve seperation of concerns in the CPAN-related modules and ensure cleaner, smaller, and more robust tools that interact with the CPAN in the most correct ways.
<<lessThere have been any number of scripts and modules written that contain as part of their functionality some form of locally stored partial mirror of the CPAN dataset.
CPAN::Cache does the same thing, except that in addition it has the feature that the downloading and storage of CPAN data is all that it does, so it should not introduce any additional dependencies or bloat, and should be much easier to reuse that existing modules, which generally are more task-specific.
The intent is that this module will be usable by everything that is in the business of pulling modules from CPAN, storing them locally, and doing something with them.
In this way, it really does little other than mirror data from a remote URI, except that CPAN::Cache also provides some additional intelligence about which files are and are not static (will never change) which arent, and is typed specifically as a mirror of CPAN, instead of any other sort of mirror.
By building this module as a seperate distribution, it is hoped we can improve seperation of concerns in the CPAN-related modules and ensure cleaner, smaller, and more robust tools that interact with the CPAN in the most correct ways.
Download (0.021MB)
Added: 2006-10-19 License: Perl Artistic License Price:
1100 downloads
CPAN::Porters 0.01
PAN::Porters is a resource for people maintaining packages of CPAN modules in various distributions. more>>
PAN::Porters is a resource for people maintaining packages of CPAN modules in various distributions.
SYNOPSIS
CPAN modules can be either installed from source (downloaded directly from CPAN) or they can be installed with the package mangement system of your distribution.
CPAN::Porters is a resource for people who are maintaining those packages in the various distributions.
Reasoning
When developing an application we usually dont want to build our own machine. Neither compile our own kernel. In most of the cases we wont want to compile and install our own version of a database engine nor Apache or any other 3rd party tool. So my assumption is that we wont want to install our CPAN dependencies either. Again - in the standard case.
For people just using an application written in Perl it is even more important that they should not deal with all these packages. Most of us know how much people suffer when they need to install 10s of modules and their dependencies from CPAN. Especially for modules with dependencies outside of CPAN.
While CPAN.pm, CPANPLUS.pm have improved a lot they still cannot deal with cases when one of the dependencies fails to install cleanly.
In addition while we usually want to work with recent versions of modules from CPAN, we usually dont want to get the bleeding edge. Espcially not in applications.
<<lessSYNOPSIS
CPAN modules can be either installed from source (downloaded directly from CPAN) or they can be installed with the package mangement system of your distribution.
CPAN::Porters is a resource for people who are maintaining those packages in the various distributions.
Reasoning
When developing an application we usually dont want to build our own machine. Neither compile our own kernel. In most of the cases we wont want to compile and install our own version of a database engine nor Apache or any other 3rd party tool. So my assumption is that we wont want to install our CPAN dependencies either. Again - in the standard case.
For people just using an application written in Perl it is even more important that they should not deal with all these packages. Most of us know how much people suffer when they need to install 10s of modules and their dependencies from CPAN. Especially for modules with dependencies outside of CPAN.
While CPAN.pm, CPANPLUS.pm have improved a lot they still cannot deal with cases when one of the dependencies fails to install cleanly.
In addition while we usually want to work with recent versions of modules from CPAN, we usually dont want to get the bleeding edge. Espcially not in applications.
Download (0.004MB)
Added: 2007-07-26 License: Perl Artistic License Price:
820 downloads
CPAN::Reporter 0.38
CPAN::Reporter is a Perl module to provides Test::Reporter support for CPAN.pm. more>>
CPAN::Reporter is a Perl module to provides Test::Reporter support for CPAN.pm.
SYNOPSIS
From the CPAN shell:
cpan> install CPAN::Reporter
cpan> reload cpan
cpan> o conf init test_report
CPAN::Reporter is an add-on for the CPAN.pm module that uses Test::Reporter to send the results of module tests to the CPAN Testers project. Support for CPAN::Reporter is available in CPAN.pm as of version 1.88.
The goal of the CPAN Testers project (http://testers.cpan.org/) is to test as many CPAN packages as possible on as many platforms as possible. This provides valuable feedback to module authors and potential users to identify bugs or platform compatibility issues and improves the overall quality and value of CPAN.
One way individuals can contribute is to send test results for each module that they test or install. Installing CPAN::Reporter gives the option of automatically generating and emailing test reports whenever tests are run via CPAN.pm.
GETTING STARTED
The first step in using CPAN::Reporter is to install it using whatever version of CPAN.pm is already installed. CPAN.pm will be upgraded as a dependency if necessary.
cpan> install CPAN::Reporter
If CPAN.pm was upgraded, it needs to be reloaded.
cpan> reload cpan
If upgrading from a very old version of CPAN.pm, users may be prompted to renew their configuration settings, including the test_report option to enable CPAN::Reporter.
If not prompted automatically, users should manually initialize CPAN::Reporter support. After enabling CPAN::Reporter, CPAN.pm will automatically continue with interactive configuration of CPAN::Reporter options. (Remember to commit the CPAN configuration changes.)
cpan> o conf init test_report
cpan> o conf commit
Once CPAN::Reporter is enabled and configured, test or install modules with CPAN.pm as usual.
For example, to force CPAN to repeat tests for CPAN::Reporter to see how it works:
cpan> force test CPAN::Reporter
<<lessSYNOPSIS
From the CPAN shell:
cpan> install CPAN::Reporter
cpan> reload cpan
cpan> o conf init test_report
CPAN::Reporter is an add-on for the CPAN.pm module that uses Test::Reporter to send the results of module tests to the CPAN Testers project. Support for CPAN::Reporter is available in CPAN.pm as of version 1.88.
The goal of the CPAN Testers project (http://testers.cpan.org/) is to test as many CPAN packages as possible on as many platforms as possible. This provides valuable feedback to module authors and potential users to identify bugs or platform compatibility issues and improves the overall quality and value of CPAN.
One way individuals can contribute is to send test results for each module that they test or install. Installing CPAN::Reporter gives the option of automatically generating and emailing test reports whenever tests are run via CPAN.pm.
GETTING STARTED
The first step in using CPAN::Reporter is to install it using whatever version of CPAN.pm is already installed. CPAN.pm will be upgraded as a dependency if necessary.
cpan> install CPAN::Reporter
If CPAN.pm was upgraded, it needs to be reloaded.
cpan> reload cpan
If upgrading from a very old version of CPAN.pm, users may be prompted to renew their configuration settings, including the test_report option to enable CPAN::Reporter.
If not prompted automatically, users should manually initialize CPAN::Reporter support. After enabling CPAN::Reporter, CPAN.pm will automatically continue with interactive configuration of CPAN::Reporter options. (Remember to commit the CPAN configuration changes.)
cpan> o conf init test_report
cpan> o conf commit
Once CPAN::Reporter is enabled and configured, test or install modules with CPAN.pm as usual.
For example, to force CPAN to repeat tests for CPAN::Reporter to see how it works:
cpan> force test CPAN::Reporter
Download (0.044MB)
Added: 2007-01-24 License: Perl Artistic License Price:
1003 downloads
CPAN+changelog 1.36
CPAN+changelog is a wrapper for some of the CPAN modules functions, namely more>>
If you are administrator for a Perl installation and you use CPAN for updating Perl modules, then this software provides some assistance to you.
CPAN+changelog is a wrapper for some of the CPAN modules functions, namely
"r" (upgrade recommendations) and "install". These functions are enriched with ChangeLog and BuildLog functionality. A new "history" function allows you to look up when a modules version has changed.
This aims at making module installation/upgrades more transparent (ChangeLog) and easier to analyse in retrospect (BuildLog).
"r": for every upgradeable module the corresponding ChangeLog entries are shown. This makes for an interesting read and helps you in deciding how urgent an upgrade for that module is.
"install": provides a BuildLog for all of the output produced during install. Additionally, it creates an installation snapshot by calling "autobundle" after a successful install. Those snapshots help you to recreate the same module environment on another installation. Also, the "history" function uses them. A warning is issued if a modules version number has not changed during upgrade, indicating a build problem.
"history": looks for Snapshots and BuildLogs indicating that a module has been installed or where the install has failed
Enhancements:
- Since somewhere around version 1.90, CPAN switched to using temporary directories in {cpan_home}/build. A workaround was made to avoid cluttering this place unnecessarily.
<<lessCPAN+changelog is a wrapper for some of the CPAN modules functions, namely
"r" (upgrade recommendations) and "install". These functions are enriched with ChangeLog and BuildLog functionality. A new "history" function allows you to look up when a modules version has changed.
This aims at making module installation/upgrades more transparent (ChangeLog) and easier to analyse in retrospect (BuildLog).
"r": for every upgradeable module the corresponding ChangeLog entries are shown. This makes for an interesting read and helps you in deciding how urgent an upgrade for that module is.
"install": provides a BuildLog for all of the output produced during install. Additionally, it creates an installation snapshot by calling "autobundle" after a successful install. Those snapshots help you to recreate the same module environment on another installation. Also, the "history" function uses them. A warning is issued if a modules version number has not changed during upgrade, indicating a build problem.
"history": looks for Snapshots and BuildLogs indicating that a module has been installed or where the install has failed
Enhancements:
- Since somewhere around version 1.90, CPAN switched to using temporary directories in {cpan_home}/build. A workaround was made to avoid cluttering this place unnecessarily.
Download (1.0MB)
Added: 2007-06-05 License: Other/Proprietary License with Source Price:
871 downloads
Test::CPANpm 0.010
Test::CPANpm is a Perl module to test a distributions interaction with CPAN before uploading. more>>
Test::CPANpm is a Perl module to test a distributions interaction with CPAN before uploading.
SYNOPSIS
use Test::CPANpm;
use Test::More qw(no_plan);
cpan_depends_ok(
[CGI, Module::Build, Acme::Wabbit],
got the right dependancies
);
cpan_depends_ok_force_missing(
[Some::Module::Build::Subclass, CGI, Module::Build, Acme::Wabbit],
[Some::Module::Build::Subclass],
got dependancies even though our Module::Build subclass is missing
);
Test::CPANpm fools CPAN.pm into thinking it has downloaded and unpacked your package, then has it attempt to generate a Makefile or Build script. After this process completes, it asks your CPAN module what dependancies it thinks exist.
If you just want to make sure your distribution is packaged in a way that is good for CPAN, consider using Test::Distribution instead. The main time that Test::CPANpm is useful is when you depend on modules inside your Makefile.PL or Build.PL script and you want to make sure that you degrade gracefully if those modules are not available.
<<lessSYNOPSIS
use Test::CPANpm;
use Test::More qw(no_plan);
cpan_depends_ok(
[CGI, Module::Build, Acme::Wabbit],
got the right dependancies
);
cpan_depends_ok_force_missing(
[Some::Module::Build::Subclass, CGI, Module::Build, Acme::Wabbit],
[Some::Module::Build::Subclass],
got dependancies even though our Module::Build subclass is missing
);
Test::CPANpm fools CPAN.pm into thinking it has downloaded and unpacked your package, then has it attempt to generate a Makefile or Build script. After this process completes, it asks your CPAN module what dependancies it thinks exist.
If you just want to make sure your distribution is packaged in a way that is good for CPAN, consider using Test::Distribution instead. The main time that Test::CPANpm is useful is when you depend on modules inside your Makefile.PL or Build.PL script and you want to make sure that you degrade gracefully if those modules are not available.
Download (0.008MB)
Added: 2007-05-03 License: Perl Artistic License Price:
904 downloads
CPAN::Test::Others 0.01
CPAN::Test::Others is a Perl module to include tests for other modules on CPAN. more>>
CPAN::Test::Others is a Perl module to include tests for other modules on CPAN.
SYNOPSIS
You dont have any use for this module, just run its tests and report them to CPAN Testers
Sometimes I have an urge to write tests for other modules. Getting these tests included in the real distributin is not always easy, other module authors are busy too. They might have a real life.
So this module does not have its own code, it only has prerequisites and tests for those other modules.
<<lessSYNOPSIS
You dont have any use for this module, just run its tests and report them to CPAN Testers
Sometimes I have an urge to write tests for other modules. Getting these tests included in the real distributin is not always easy, other module authors are busy too. They might have a real life.
So this module does not have its own code, it only has prerequisites and tests for those other modules.
Download (0.003MB)
Added: 2007-05-05 License: Perl Artistic License Price:
903 downloads
CPAN::WWW::Testers 0.31
CPAN::WWW::Testers is present CPAN testers data. more>>
CPAN::WWW::Testers is present CPAN testers data.
SYNOPSIS
my $t = CPAN::WWW::Testers->new();
$t->directory($directory);
$t->generate;
The distribution can present CPAN Testers data. cpan-testers is a group which was initially setup by Graham Barr and Chris Nandor. The objective of the group is to test as many of the distributions on CPAN as possible, on as many platforms as possible. The ultimate goal is to improve the portability of the distributions on CPAN, and provide good feedback to the authors.
CPAN Testers is really a mailing list with a web interface, testers.cpan.org. testers.cpan.org was painfully slow. I happened to be doing metadata stuff for Module::CPANTS. This is the result. Its alpha code, but using it anyone can host their CPAN Testers website.
Unpack the distribution and look at examples/generate.pl. Wait patiently. Send patches and better design.
At the moment I am running the output of this at http://testers.astray.com/
INTERFACE
The Constructor
new
Instatiates the object CPAN::WWW::Testers.
Methods
directory
Accessor to set/get the directory where the webpages are to be created. Note this also where the local copy of testers.db will reside.
generate
Initiates the $obj->download and $obj->write method calls.
download
Downloads the latest article updates from the NNTP server for the cpan-testers newgroup. Articles are then stored in the news.db SQLite database.
database
Path to the SQLite database.
write
Reads the local copy of the testers.db, and creates the alphabetic index, distribution and main index web pages, together with the YAML and RSS pages for each distribution.
<<lessSYNOPSIS
my $t = CPAN::WWW::Testers->new();
$t->directory($directory);
$t->generate;
The distribution can present CPAN Testers data. cpan-testers is a group which was initially setup by Graham Barr and Chris Nandor. The objective of the group is to test as many of the distributions on CPAN as possible, on as many platforms as possible. The ultimate goal is to improve the portability of the distributions on CPAN, and provide good feedback to the authors.
CPAN Testers is really a mailing list with a web interface, testers.cpan.org. testers.cpan.org was painfully slow. I happened to be doing metadata stuff for Module::CPANTS. This is the result. Its alpha code, but using it anyone can host their CPAN Testers website.
Unpack the distribution and look at examples/generate.pl. Wait patiently. Send patches and better design.
At the moment I am running the output of this at http://testers.astray.com/
INTERFACE
The Constructor
new
Instatiates the object CPAN::WWW::Testers.
Methods
directory
Accessor to set/get the directory where the webpages are to be created. Note this also where the local copy of testers.db will reside.
generate
Initiates the $obj->download and $obj->write method calls.
download
Downloads the latest article updates from the NNTP server for the cpan-testers newgroup. Articles are then stored in the news.db SQLite database.
database
Path to the SQLite database.
write
Reads the local copy of the testers.db, and creates the alphabetic index, distribution and main index web pages, together with the YAML and RSS pages for each distribution.
Download (0.011MB)
Added: 2006-12-14 License: Perl Artistic License Price:
1044 downloads
CPAN::Mini::Extract 1.16
CPAN::Mini::Extract is a Perl module that can create CPAN::Mini mirrors with the archives extracted. more>>
CPAN::Mini::Extract is a Perl module that can create CPAN::Mini mirrors with the archives extracted.
SYNOPSIS
# Create a CPAN extractor
my $cpan = CPAN::Mini::Extract->new(
remote => http://mirrors.kernel.org/cpan/,
local => /home/adam/.minicpan,
trace => 1,
extract => /home/adam/.cpanextracted,
extract_filter => sub { /.pm$/ and ! /b(inc|t)b/ },
extract_check => 1,
);
# Run the minicpan process
my $changes = $cpan->run;
CPAN::Mini::Extract provides a base for implementing systems that download "all" of CPAN, extract the dists and then process the files within.
It provides the same syncronisation functionality as CPAN::Mini except that it also maintains a parallel directory tree that contains a directory located at an identical path to each archive file, with a controllable subset of the files in the archive extracted below.
How does it work
CPAN::Mini::Extract starts with a CPAN::Mini local mirror, which it will optionally update before each run. Once the CPAN::Mini directory is current, it will scan both directory trees, extracting any new archives and removing any extracted archives no longer in the minicpan mirror.
<<lessSYNOPSIS
# Create a CPAN extractor
my $cpan = CPAN::Mini::Extract->new(
remote => http://mirrors.kernel.org/cpan/,
local => /home/adam/.minicpan,
trace => 1,
extract => /home/adam/.cpanextracted,
extract_filter => sub { /.pm$/ and ! /b(inc|t)b/ },
extract_check => 1,
);
# Run the minicpan process
my $changes = $cpan->run;
CPAN::Mini::Extract provides a base for implementing systems that download "all" of CPAN, extract the dists and then process the files within.
It provides the same syncronisation functionality as CPAN::Mini except that it also maintains a parallel directory tree that contains a directory located at an identical path to each archive file, with a controllable subset of the files in the archive extracted below.
How does it work
CPAN::Mini::Extract starts with a CPAN::Mini local mirror, which it will optionally update before each run. Once the CPAN::Mini directory is current, it will scan both directory trees, extracting any new archives and removing any extracted archives no longer in the minicpan mirror.
Download (0.026MB)
Added: 2007-07-25 License: Perl Artistic License Price:
821 downloads
MPCA 1.57
MPCA is a comprehensive suite of tools for doing discrete principal components analysis on data sets of size 100Mb or more. more>>
MPCA is a comprehensive suite of tools for doing discrete principal components analysis on data sets of size 100Mb or more. Scaling is done using sparse vectors, multi-threading, memory mapping, and other POSIX tricks.
Reports, file dumping utilities and other utilities are included. The general problem of discrete components analysis is variously called grade of membership, PLSA, non-neg.matrix factorization, multinomial admixtures, LDA, and multinomial PCA.
Enhancements:
- Some linkages to the ALVIS system allow the software to be used to create topic models and annotate linguistically tagged content.
- Some cleanups with the linkBags Perl utilities have been moved out to CPAN.
- To see some of the models in action, visit the search demos at.
<<lessReports, file dumping utilities and other utilities are included. The general problem of discrete components analysis is variously called grade of membership, PLSA, non-neg.matrix factorization, multinomial admixtures, LDA, and multinomial PCA.
Enhancements:
- Some linkages to the ALVIS system allow the software to be used to create topic models and annotate linguistically tagged content.
- Some cleanups with the linkBags Perl utilities have been moved out to CPAN.
- To see some of the models in action, visit the search demos at.
Download (2.8MB)
Added: 2007-02-21 License: GPL (GNU General Public License) Price:
975 downloads
CIPP 3.0.8
CIPP Perl module contains a Reference Manual to CIPP, the powerful preprocessor language for embedding Perl and SQL in HTML. more>>
CIPP Perl module contains a Reference Manual to CIPP, the powerful preprocessor language for embedding Perl and SQL in HTML.
SYNOPSIS
perldoc CIPP::Manual
This documentation module is part of the CIPP distribution which is available on CPAN.
The manual describes CIPPs basic syntax rules, classifies its execution environments and describes all CIPP commands in alphabetical order. Each reference contains syntax notation, textual description and examples.
Configuration hints for CGI::CIPP and Apache::CIPP can be found in the correspondent manpages.
<<lessSYNOPSIS
perldoc CIPP::Manual
This documentation module is part of the CIPP distribution which is available on CPAN.
The manual describes CIPPs basic syntax rules, classifies its execution environments and describes all CIPP commands in alphabetical order. Each reference contains syntax notation, textual description and examples.
Configuration hints for CGI::CIPP and Apache::CIPP can be found in the correspondent manpages.
Download (0.14MB)
Added: 2007-05-09 License: Perl Artistic License Price:
900 downloads
Pastebot 0.50
Pastebot is an irc bot that saves channels from large amounts of pasted material. more>>
Pastebot is an irc bot that saves channels from large amounts of pasted material. Text is pasted into a web form, and the bot announces an URL where it can be read. Interested people can partake in the joy without the whole channel scrolling to hell.
You can install program with following commands:
make install-cpan
make install
The default installation structure:
/usr/local/etc/pastebot/ Configuration files
/usr/local/share/pastebot Libraries
/usr/local/bin Executables
<<lessYou can install program with following commands:
make install-cpan
make install
The default installation structure:
/usr/local/etc/pastebot/ Configuration files
/usr/local/share/pastebot Libraries
/usr/local/bin Executables
Download (0.045MB)
Added: 2006-10-05 License: GPL (GNU General Public License) Price:
1115 downloads
Mezzanine 1.8
Mezzanine is a set of tools which simplify the management of software packages and collections of software packages. more>>
Mezzanine is a set of tools which simplify the management of software packages and collections of software packages.
It provides encapsulation for source and package management as well as a streamlined mechanism for making changes to these packages.
Enhancements:
- SCM functionality has been rewritten as implementations of a standard interface class.
- This will allow more seamless support of other SCM systems (e.g. Subversion).
- Dependencies on the "Meta" package, perhaps the worst thing ever to happen to CPAN, have been worked around, and this release allows for local mode operation on non-CPAN Perl archives on the filesystem.
- Spec files are now passed through RPMs own parser for improved macro expansion.
- Several new specgen templates were added, and many minor bugs fixed along the way.
<<lessIt provides encapsulation for source and package management as well as a streamlined mechanism for making changes to these packages.
Enhancements:
- SCM functionality has been rewritten as implementations of a standard interface class.
- This will allow more seamless support of other SCM systems (e.g. Subversion).
- Dependencies on the "Meta" package, perhaps the worst thing ever to happen to CPAN, have been worked around, and this release allows for local mode operation on non-CPAN Perl archives on the filesystem.
- Spec files are now passed through RPMs own parser for improved macro expansion.
- Several new specgen templates were added, and many minor bugs fixed along the way.
Download (0.085MB)
Added: 2005-08-29 License: BSD License Price:
1516 downloads
perlfaq3 5.8.8
perlfaq3 Perl module contains programming tools. more>>
perlfaq3 Perl module contains programming tools.
How do I do (anything)?
Have you looked at CPAN (see perlfaq2)? The chances are that someone has already written a module that can solve your problem. Have you read the appropriate manpages? Heres a brief index:
Basics perldata, perlvar, perlsyn, perlop, perlsub
Execution perlrun, perldebug
Functions perlfunc
Objects perlref, perlmod, perlobj, perltie
Data Structures perlref, perllol, perldsc
Modules perlmod, perlmodlib, perlsub
Regexes perlre, perlfunc, perlop, perllocale
Moving to perl5 perltrap, perl
Linking w/C perlxstut, perlxs, perlcall, perlguts, perlembed
Various http://www.cpan.org/misc/olddoc/FMTEYEWTK.tgz
(not a man-page but still useful, a collection
of various essays on Perl techniques)
A crude table of contents for the Perl manpage set is found in perltoc.
<<lessHow do I do (anything)?
Have you looked at CPAN (see perlfaq2)? The chances are that someone has already written a module that can solve your problem. Have you read the appropriate manpages? Heres a brief index:
Basics perldata, perlvar, perlsyn, perlop, perlsub
Execution perlrun, perldebug
Functions perlfunc
Objects perlref, perlmod, perlobj, perltie
Data Structures perlref, perllol, perldsc
Modules perlmod, perlmodlib, perlsub
Regexes perlre, perlfunc, perlop, perllocale
Moving to perl5 perltrap, perl
Linking w/C perlxstut, perlxs, perlcall, perlguts, perlembed
Various http://www.cpan.org/misc/olddoc/FMTEYEWTK.tgz
(not a man-page but still useful, a collection
of various essays on Perl techniques)
A crude table of contents for the Perl manpage set is found in perltoc.
Download (12.2MB)
Added: 2007-06-07 License: Perl Artistic License Price:
869 downloads
Bio::Phylo::Manual 0.15
Bio::Phylo::Manual is a Perl module that contains a Bio::Phylo v.0.14 user guide. more>>
Bio::Phylo::Manual is a Perl module that contains a Bio::Phylo v.0.14 user guide.
This is the manual for Bio::Phylo. Bio::Phylo is a perl5 package for phylogenetic analysis. For installation instructions, read the README file in the root directory of the distribution. The stable URL for the most recent distribution is http://search.cpan.org/~rvosa/Bio-Phylo/
<<lessThis is the manual for Bio::Phylo. Bio::Phylo is a perl5 package for phylogenetic analysis. For installation instructions, read the README file in the root directory of the distribution. The stable URL for the most recent distribution is http://search.cpan.org/~rvosa/Bio-Phylo/
Download (0.10MB)
Added: 2006-09-29 License: Perl Artistic License Price:
1121 downloads
DB::Appgen 1.0
DB::Appgen is a Perl interface which includes both function oriented and object oriented interfaces. more>>
DB::Appgen is a Perl interface which includes both function oriented and object oriented interfaces to manipulate data in APPGEN Custom Suite databases.
All this was made in about four hours including reading perlxstut manpage, so do not expect something pretty. Although it appears to be working OK in my tests.
Ill be doing some bigger data manipulations using this extension in the next couple of days and I will probably build some kind of higher level interface. If you dont see it on CPAN yet feel free to ask me about it.
<<lessAll this was made in about four hours including reading perlxstut manpage, so do not expect something pretty. Although it appears to be working OK in my tests.
Ill be doing some bigger data manipulations using this extension in the next couple of days and I will probably build some kind of higher level interface. If you dont see it on CPAN yet feel free to ask me about it.
Download (0.009MB)
Added: 2006-05-24 License: GPL (GNU General Public License) Price:
1251 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above cpan search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed