comparison cpt_psm_plotter/lib/CPT/Bio/DataSource.pm @ 0:54c7a3ea81e2 draft

Uploaded
author cpt
date Tue, 05 Jul 2022 05:40:36 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:54c7a3ea81e2
1 package CPT::Bio::DataSource;
2 use Moose::Role;
3 use strict;
4 use warnings;
5 use autodie;
6
7 requires 'getSeqIO';
8
9
10 sub test {
11
12 }
13
14 no Moose::Role;
15 1;
16
17 __END__
18
19 =pod
20
21 =encoding UTF-8
22
23 =head1 NAME
24
25 CPT::Bio::DataSource
26
27 =head1 VERSION
28
29 version 1.99.4
30
31 =head2 test
32
33 $ds->test()
34
35 empty method for now
36
37 =head1 AUTHOR
38
39 Eric Rasche <rasche.eric@yandex.ru>
40
41 =head1 COPYRIGHT AND LICENSE
42
43 This software is Copyright (c) 2014 by Eric Rasche.
44
45 This is free software, licensed under:
46
47 The GNU General Public License, Version 3, June 2007
48
49 =cut