forked from gustavo11/GFFLib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGFFExonUTRCDS.pm
142 lines (103 loc) · 3.13 KB
/
GFFExonUTRCDS.pm
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
package GFFExonUTRCDS;
use strict 'vars';
use strict 'refs';
require GFFLib::GFFTranscript;
# use overload '==' => \&compare;
sub new {
# type = [exon,five_prime_utr,three_prime_utr,CDS]
my ( $exon_name, $start_coord, $end_coord, $type, $parent ) = @_;
my $self = { id => $exon_name,
start => $start_coord,
end => $end_coord,
type => $type,
parent => $parent };
bless $self, GFFExonUTRCDS;
return $self;
}
sub get_parent {
my $self = shift;
return $self->{parent};
}
# type = [exon,five_prime_utr,three_prime_utr,CDS]
sub is_last{
my $self = shift;
print "GFFExonUTRCDS::is_last Parent ID " . $self->{parent}->get_id() . "\n";
print "Last exon:" . $self->{parent}->get_last( $self->{type} )->get_id() . " Current:" . $self->{id} . "\n";
return $self->{id} eq $self->{parent}->get_last( $self->{type} )->get_id();
}
sub is_first{
my $self = shift;
print "GFFExonUTRCDS::is_first Parent ID " . $self->{parent}->get_id() . "\n";
print "First exon:" . $self->{parent}->get_first( $self->{type} )->get_id() . " Current:" . $self->{id} . "\n";
return $self->{id} eq $self->{parent}->get_first( $self->{type} )->get_id();
}
sub is_compatible_to{
my $self = shift;
my ($other_exon_ref) = @_;
# Exons are compatible if:
# - They are the last exons and start coordinates are identical
# - They are the first exons and end coordinates are identical
# - If they are neither the first nor the last exons but the coordinates are identical
# For the time being we are going compare only the same exon across different GFF files
# Therefore, if the exon id is different the exons are automatically incompatible
return 1 if( ( $self->{start} == $other_exon_ref->get_start() ) &&
( $self->{end} == $other_exon_ref->get_end() ) );
return 1 if( $self->is_last_exon() && $other_exon_ref->is_last_exon() &&
( $self->{start} == $other_exon_ref->get_start() ) );
return 1 if( $self->is_first_exon() && $other_exon_ref->is_first_exon() &&
( $self->{end} == $other_exon_ref->get_end() ) );
return 0;
}
sub get_id {
my $self = shift;
return $self->{id};
}
sub get_start {
my $self = shift;
return $self->{start};
}
sub get_end {
my $self = shift;
return $self->{end};
}
sub set_start {
my $self = shift;
my ( $coord_start ) = @_;
return $self->{start} = $coord_start;
}
sub set_end {
my $self = shift;
my ( $coord_end ) = @_;
return $self->{end} = $coord_end;
}
sub toGFF {
my $self = shift;
my ($chrom, $parent, $strand ) = @_;
print $chrom . "\t.\t" . $self->{type} . "\t" .
$self->{start} . "\t" .
$self->{end} . "\t.\t" .
$strand . "\t.\t" .
"ID=" . $self->{id} . "; " .
"Parent=$parent;\n";
}
# sub compare{
# my $self = shift;
#
# my ( $other ) = @_;
#
# return 0 if( $self->{start} == $other->{start} &&
# $self->{end} == $other->{end} &&
# $self->{chrom} == $other->{end} &&
#
# }
sub set_attribute {
my $self = shift;
my ( $key, $value ) = @_;
return $self->{attrib}{$key} = $value;
}
sub get_attribute {
my $self = shift;
my ($key) = @_;
return $self->{attrib}{$key};
}
return 1;