-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOrf.pir
28 lines (20 loc) · 1007 Bytes
/
Orf.pir
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
#
# This is an object that can store the information about an ORF
# All these information are given by flip and predicted.
#
- PerlClass PirObject::Orf
- InheritsFrom PirObject
- FieldsTable
# Field name Struct Type Comments
#--------------------- ------ ------------------- ---------------------
start single int4 Start ORF
startBlast single int4 Start of match blast
end single int4 End ORF
strand single int4 Strand of the ORF
evalue single string E-Value given by Blast for this ORF
hsps array <Hsp_query_sbjct> All the HSP given by blast
protein single string The protein blasted against this ORF
- EndFieldsTable
- Methods
our $RCS_VERSION='$Id: Orf.pir,v 1.7 2008/09/12 18:32:20 riouxp Exp $';
our ($VERSION) = ($RCS_VERSION =~ m#,v ([\w\.]+)#);