comparison cpt_psm_prep/lib/CPT/Writer/GFF3.pm @ 0:e4de0a0e90c8 draft

Uploaded
author cpt
date Tue, 05 Jul 2022 05:38:34 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:e4de0a0e90c8
1 package CPT::Writer::GFF3;
2 use Moose;
3 with 'CPT::Writer';
4
5 sub process {
6 my ($self) = @_;
7 $self->processed_data( $self->data );
8 $self->processing_complete(1);
9 }
10
11 sub suffix {
12 return 'gff3';
13 }
14 no Moose;
15 1;
16
17 __END__
18
19 =pod
20
21 =encoding UTF-8
22
23 =head1 NAME
24
25 CPT::Writer::GFF3
26
27 =head1 VERSION
28
29 version 1.99.4
30
31 =head1 AUTHOR
32
33 Eric Rasche <rasche.eric@yandex.ru>
34
35 =head1 COPYRIGHT AND LICENSE
36
37 This software is Copyright (c) 2014 by Eric Rasche.
38
39 This is free software, licensed under:
40
41 The GNU General Public License, Version 3, June 2007
42
43 =cut