comparison cpt_psm_recombine/lib/CPT/Bio/RBS_Object.pm @ 0:b18e8268bf4e draft

Uploaded
author cpt
date Tue, 05 Jul 2022 05:05:13 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:b18e8268bf4e
1 package CPT::Bio::RBS_Object;
2 use Moose;
3 use autodie;
4
5 has 'upstream' => ( is => 'rw', isa => 'Str' );
6 has 'score' => (is => 'rw', isa => 'Int');
7 has 'rbs_seq' => (is => 'rw', isa => 'Str');
8 has 'separation' => (is => 'rw', isa => 'Int');
9
10 no Moose;
11 1;
12
13 __END__
14
15 =pod
16
17 =encoding UTF-8
18
19 =head1 NAME
20
21 CPT::Bio::RBS_Object
22
23 =head1 VERSION
24
25 version 1.99.4
26
27 =head1 AUTHOR
28
29 Eric Rasche <rasche.eric@yandex.ru>
30
31 =head1 COPYRIGHT AND LICENSE
32
33 This software is Copyright (c) 2014 by Eric Rasche.
34
35 This is free software, licensed under:
36
37 The GNU General Public License, Version 3, June 2007
38
39 =cut