-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIntron.pir
30 lines (23 loc) · 1.35 KB
/
Intron.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
#
# Object that can contain exon
#
- PerlClass PirObject::Intron
- InheritsFrom PirObject
- FieldsTable
# Field name Struct Type Comments
#---------------------- ------- ----------------------- -----------------------
intronname single string Name of the intron
start single int4 Start intron
end single int4 End intron
strand single int4 Strand
intronpos single int4 Position of intron in proteic sequence
phase single int4 0 if intron doesn't split a tri-nt, 1 or 2 if intron split the tri-nt
type single string Group of intron
idbyRNAw single <AnnotPairCollection> A list of AnnotPair
comment single string A comment add to the annotation
exoStart single int4 End of previous C4 report when we have multiple C4 for 1 gene
exoEnd single int4 Start of next c4 report when we have multiple C4 for 1 gene
- EndFieldsTable
- Methods
our $RCS_VERSION='$Id: Intron.pir,v 1.4 2009/03/24 21:07:26 nbeck Exp $';
our ($VERSION) = ($RCS_VERSION =~ m#,v ([\w\.]+)#);