-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEmptyOrf.pir
33 lines (26 loc) · 1.48 KB
/
EmptyOrf.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
28
29
30
31
32
#
# A module for storing Orfs with no gene corresponding.
#
- PerlClass PirObject::EmptyOrf
- InheritsFrom PirObject
- FieldsTable
# Field name Struct Type Comments
#---------------------- ------- ------------------- -----------------------
contigname single string contigname
start single int4 Start ORF
end single int4 End ORF
strand single int4 Strand of the ORF
evalue single string E-Value given by Blast for this ORF
intron single int4 number of intron if overlappe an intron
phase single int4 phase with precedent Exon
prefix single string Indication in order to annote intronical ORF
size single int4 Lenght of ORF
seq single string The aa sequence of ORF
firstAA single string First amino acid
possible_start array string List of possible start
similar_prot single string Name protein that match with BLAST
notes array string An array of not that should be added on the startline
- EndFieldsTable
- Methods
our $RCS_VERSION='$Id: EmptyOrf.pir,v 1.6 2009/12/12 00:50:01 nbeck Exp $';
our ($VERSION) = ($RCS_VERSION =~ m#,v ([\w\.]+)#);