GenOOx-Data-File-SAMstar

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

   "name" : "GenOOx-Data-File-SAMstar",
   "prereqs" : {
      "configure" : {
         "requires" : {
            "ExtUtils::MakeMaker" : "6.30"
         }
      },
      "runtime" : {
         "requires" : {
            "GenOO::Data::File::SAM::Record" : "0",
            "Modern::Perl" : "0",
            "Moose" : "0",
            "namespace::autoclean" : "0"
         }
      },
      "test" : {
         "requires" : {
            "Test::Class" : "0",
            "Test::Class::Load" : "0",
            "Test::Moose" : "0",
            "Test::More" : "0",

META.yml  view on Meta::CPAN

  ExtUtils::MakeMaker: '6.30'
dynamic_config: 0
generated_by: 'Dist::Zilla version 5.015, CPAN::Meta::Converter version 2.133380'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'
name: GenOOx-Data-File-SAMstar
requires:
  GenOO::Data::File::SAM::Record: '0'
  Modern::Perl: '0'
  Moose: '0'
  namespace::autoclean: '0'
resources:
  bugtracker: https://github.com/genoo/GenOOx-Sam-STAR/issues
  homepage: https://github.com/genoo/GenOOx-Sam-STAR
  repository: https://github.com/genoo/GenOOx-Sam-STAR.git
version: 0.0.3

Makefile.PL  view on Meta::CPAN

  "BUILD_REQUIRES" => {},
  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => "6.30"
  },
  "DISTNAME" => "GenOOx-Data-File-SAMstar",
  "EXE_FILES" => [],
  "LICENSE" => "perl",
  "NAME" => "GenOOx::Data::File::SAMstar",
  "PREREQ_PM" => {
    "GenOO::Data::File::SAM::Record" => 0,
    "Modern::Perl" => 0,
    "Moose" => 0,
    "namespace::autoclean" => 0
  },
  "TEST_REQUIRES" => {
    "Test::Class" => 0,
    "Test::Class::Load" => 0,
    "Test::Moose" => 0,
    "Test::More" => 0,
    "Test::Most" => 0,
    "base" => 0,

Makefile.PL  view on Meta::CPAN

  },
  "VERSION" => "0.0.3",
  "test" => {
    "TESTS" => "t/*.t"
  }
);


my %FallbackPrereqs = (
  "GenOO::Data::File::SAM::Record" => 0,
  "Modern::Perl" => 0,
  "Moose" => 0,
  "Test::Class" => 0,
  "Test::Class::Load" => 0,
  "Test::Moose" => 0,
  "Test::More" => 0,
  "Test::Most" => 0,
  "base" => 0,
  "namespace::autoclean" => 0,
  "strict" => 0
);

README.md  view on Meta::CPAN

  2. Install dependencies (listed below) from CPAN. [How to install CPAN modules](http://www.cpan.org/modules/INSTALL.html).
  3. Clone the GenOO repository on your machine
     `git clone git@github.com:genoo/GenOOx-Sam-STAR.git`.
  4. To verify that everything works 
     `cd path/to/your/clone/; prove -l t/*.t;`.
  5. In the beginning of your perl script write the following
     `use lib 'path/to/your/clone/lib/'`.

## Dependencies (maybe not exhaustive)
* GenOO
* Modern::Perl
* Moose

## Copyright
Copyright (c) 2013 Emmanouil Maragkakis and Panagiotis Alexiou.

## License
This library is free software and may be distributed under the same terms as perl itself.

This library is distributed in the hope that it will be useful, but **WITHOUT ANY WARRANTY**; without even the implied warranty of merchantability or fitness for a particular purpose.

lib/GenOOx/Data/File/SAMstar.pm  view on Meta::CPAN

=cut

# Let the code begin...

package GenOOx::Data::File::SAMstar;
$GenOOx::Data::File::SAMstar::VERSION = '0.0.3';

#######################################################################
#######################   Load External modules   #####################
#######################################################################
use Modern::Perl;


1;

t/Test/GenOOx.pm  view on Meta::CPAN

package Test::GenOOx;

use Modern::Perl;
use base 'Test::Class';
use Test::More;

INIT { Test::Class->runtests }

#######################################################################
###########################   Class Methods   #########################
#######################################################################
sub class {
	my ($self) = @_;

t/test_all.t  view on Meta::CPAN

#!/usr/bin/env perl
use Modern::Perl;

use Test::Class::Load qw(t/);



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