line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Bio::FastParsers::Hmmer; |
2
|
|
|
|
|
|
|
# ABSTRACT: Classes for parsing HMMER output |
3
|
|
|
|
|
|
|
# CONTRIBUTOR: Arnaud DI FRANCO <arnaud.difranco@gmail.com> |
4
|
|
|
|
|
|
|
$Bio::FastParsers::Hmmer::VERSION = '0.213510'; |
5
|
7
|
|
|
7
|
|
58
|
use strict; |
|
7
|
|
|
|
|
18
|
|
|
7
|
|
|
|
|
289
|
|
6
|
7
|
|
|
7
|
|
44
|
use warnings; |
|
7
|
|
|
|
|
18
|
|
|
7
|
|
|
|
|
256
|
|
7
|
|
|
|
|
|
|
|
8
|
7
|
|
|
7
|
|
3195
|
use Bio::FastParsers::Hmmer::Model; |
|
7
|
|
|
|
|
33
|
|
|
7
|
|
|
|
|
372
|
|
9
|
7
|
|
|
7
|
|
4685
|
use Bio::FastParsers::Hmmer::Standard; |
|
7
|
|
|
|
|
34
|
|
|
7
|
|
|
|
|
361
|
|
10
|
7
|
|
|
7
|
|
5365
|
use Bio::FastParsers::Hmmer::Table; |
|
7
|
|
|
|
|
31
|
|
|
7
|
|
|
|
|
365
|
|
11
|
7
|
|
|
7
|
|
5057
|
use Bio::FastParsers::Hmmer::DomTable; |
|
7
|
|
|
|
|
32
|
|
|
7
|
|
|
|
|
452
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
1; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
__END__ |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=pod |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 NAME |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Bio::FastParsers::Hmmer - Classes for parsing HMMER output |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 VERSION |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
version 0.213510 |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 SYNOPSIS |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
# see Bio::FastParsers::Hmmer::Model |
30
|
|
|
|
|
|
|
# see Bio::FastParsers::Hmmer::Standard |
31
|
|
|
|
|
|
|
# see Bio::FastParsers::Hmmer::Table; |
32
|
|
|
|
|
|
|
# see Bio::FastParsers::Hmmer::DomTable; |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 DESCRIPTION |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Parsers for the HMMER model and three output formats are available: standard, |
37
|
|
|
|
|
|
|
tabular and domain-wise tabular. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 AUTHOR |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
Denis BAURAIN <denis.baurain@uliege.be> |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 CONTRIBUTOR |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=for stopwords Arnaud DI FRANCO |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
Arnaud DI FRANCO <arnaud.difranco@gmail.com> |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
This software is copyright (c) 2013 by University of Liege / Unit of Eukaryotic Phylogenomics / Denis BAURAIN. |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
54
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=cut |