Bio-Tools-ProteinogenicAA
view release on metacpan - search on metacpan
view release on metacpan or search on metacpan
}
},
"configure" : {
"requires" : {
"ExtUtils::MakeMaker" : "0"
}
},
"runtime" : {
"requires" : {
"Moose" : "0",
"namespace::autoclean" : "0",
"perl" : "5.006"
}
}
},
"release_status" : "stable",
"resources" : {
"bugtracker" : {
"web" : "http://rt.cpan.org/NoAuth/Bugs.html?Dist=Bio-Tools-ProteinogenicAA"
},
"homepage" : "https://github.com/Leprevost/Bio-Tools-ProteinogenicAA",
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: '1.4'
name: Bio-Tools-ProteinogenicAA
no_index:
directory:
- t
- inc
requires:
Moose: '0'
namespace::autoclean: '0'
perl: '5.006'
resources:
bugtracker: http://rt.cpan.org/NoAuth/Bugs.html?Dist=Bio-Tools-ProteinogenicAA
homepage: https://github.com/Leprevost/Bio-Tools-ProteinogenicAA
repository: https://github.com/Leprevost/Bio-Tools-ProteinogenicAA
version: '0.021'
Makefile.PL view on Meta::CPAN
PL_FILES => {},
MIN_PERL_VERSION => 5.006,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0,
},
PREREQ_PM => {
'Moose' => 0,
'namespace::autoclean' => 0,
},
(! eval { ExtUtils::MakeMaker->VERSION(6.46) } ? () :
(META_ADD => {
resources => {
homepage => 'https://github.com/Leprevost/Bio-Tools-ProteinogenicAA',
repository => 'https://github.com/Leprevost/Bio-Tools-ProteinogenicAA',
bugtracker => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Bio-Tools-ProteinogenicAA',
},
})
),
lib/Bio/Tools/ProteinogenicAA.pm view on Meta::CPAN
package Bio::Tools::ProteinogenicAA;
use v5.12;
use strict;
use warnings;
use Moose;
use namespace::autoclean;
use Bio::Tools::ProteinogenicAA::AAInfo;
our $VERSION = '0.021';
has 'aminoacids' => (
is => 'rw',
isa => 'ArrayRef[Bio::Tools::ProteinogenicAA::AAInfo]',
);
sub BUILD {
lib/Bio/Tools/ProteinogenicAA/AAInfo.pm view on Meta::CPAN
package Bio::Tools::ProteinogenicAA::AAInfo;
use strict;
use warnings;
use v5.12;
use Moose;
use namespace::autoclean;
has 'amino_acid' => (
is => 'rw',
isa => 'Str',
);
has 'short_name' => (
is => 'rw',
isa => 'Str',
);
view all matches for this distributionview release on metacpan - search on metacpan
( run in 2.640 seconds using v1.00-cache-2.02-grep-82fe00e-cpan-c98054f2a92 )