BIE-App-PacBio

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

use 5.014002;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    NAME              => 'BIE::App::PacBio',
    VERSION_FROM      => 'lib/BIE/App/PacBio.pm', # finds $VERSION
	      PREREQ_PM         => {
				    'BIE::Data::HDF5::File' => 0.01,
				    'namespace::autoclean' => 0.13,
				    'Moose' => 2.0,
				    'PDL' => '2.4.10',
				    'PDL::Graphics::PLplot' => 0.61,
				   }, # e.g., Module::Name => 1.1
    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
      (ABSTRACT_FROM  => 'lib/BIE/App/PacBio.pm', # retrieve abstract from module
       AUTHOR         => 'Xin Zheng <zhengxin@mail.nih.gov>') : ()),
);

system 'mkdir -p blib/bin';

README  view on Meta::CPAN

   make
   make test
   make install

DEPENDENCIES

This module requires these other modules and libraries:

  blah blah blah
  BIE::Data::HDF5::File
  namespace::autoclean
  Moose
  PDL
  PDL::Graphics::PLplot


COPYRIGHT AND LICENCE

Copyright (C) 2012 by Xin Zheng

This library is free software; you can redistribute it and/or modify

lib/BIE/App/PacBio.pm  view on Meta::CPAN

package BIE::App::PacBio;
our $VERSION = '0.01';
use Moose;
use namespace::autoclean;
use v5.10;
use BIE::Data::HDF5::File;

has 'file' => (is => 'ro',
	       isa => 'Str',
	       required => 1
	      );

has 'h5' => (is => 'rw',
	     isa => 'BIE::Data::HDF5::File',

lib/BIE/App/PacBio.pm  view on Meta::CPAN

They could all get installed with "cpan".

=over

=item *

Moose

=item * 

namespace::autoclean

=item *

PDL, PDL::Graphics::PLplot, Cairo

=back

=head2 FOR ORDINARY USER

=over



( run in 0.615 second using v1.01-cache-2.11-cpan-4d50c553e7e )