comparison lib/CPT/Bio/DataSource.pm @ 1:8691c1c61a8e draft default tip

planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
author cpt
date Mon, 05 Jun 2023 02:48:47 +0000
parents
children
comparison
equal deleted inserted replaced
0:54c7a3ea81e2 1:8691c1c61a8e
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