comparison lib/CPT/Filetype/gff3.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::Filetype::gff3;
2 no warnings;
3 use Moose;
4 with 'CPT::Filetype';
5
6 sub score {
7 my ($self) = @_;
8 my $first_line = ${$self->lines()}[0];
9 return $first_line =~ '##gff-version 3';
10 }
11
12 sub name {
13 return 'gff';
14 }
15
16 no Moose;
17 1;
18
19 __END__
20
21 =pod
22
23 =encoding UTF-8
24
25 =head1 NAME
26
27 CPT::Filetype::gff3
28
29 =head1 VERSION
30
31 version 1.99.4
32
33 =head1 AUTHOR
34
35 Eric Rasche <rasche.eric@yandex.ru>
36
37 =head1 COPYRIGHT AND LICENSE
38
39 This software is Copyright (c) 2014 by Eric Rasche.
40
41 This is free software, licensed under:
42
43 The GNU General Public License, Version 3, June 2007
44
45 =cut