-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHMMResume.pir
More file actions
32 lines (25 loc) · 1.25 KB
/
HMMResume.pir
File metadata and controls
32 lines (25 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#
# Parser for HMM result.
#
- PerlClass PirObject::HMMResume
- InheritsFrom PirObject
- FieldsTable
# Field name Struct Type Comments
#---------------------- --------------- --------------- -----------------------
fEvalue single int4 full evalue
fScore single int4 full score
fBias single int4 full bias
bEvalue single int4 best evalue
bScore single int4 best score
bBias single int4 best bias
exp single int4
NumAli single int4 number of ali
SequenceId single string identification number
Description single string
BeforeThresh single int4 1 if before HMM threshold else 0
alignments single <HMMAli>
SeqIdAndDesc single string full header
- EndFieldsTable
- Methods
our $RCS_VERSION='$Id: HMMResume.pir,v 1.4 2011/03/04 20:40:51 nbeck Exp $';
our ($VERSION) = ($RCS_VERSION =~ m#,v ([\w\.]+)#);