-
Notifications
You must be signed in to change notification settings - Fork 7
/
PhastCons.pm
219 lines (162 loc) · 4.29 KB
/
PhastCons.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
#
#===============================================================================
#
# FILE: PhastCons.pm
#
# DESCRIPTION: Package to handle Position weight matrices
# BUGS: ---
# NOTES: The package is spun off from the AnnotationIO.pm
# AUTHOR: Chaolin Zhang (cz), czhang@rockefeller.edu
# COMPANY: Rockefeller University
# VERSION: 1.0
# CREATED: 12/16/10 20:58:53
# REVISION: ---
#===============================================================================
package PhastCons;
require Exporter;
our $VERSION = 1.01;
@ISA = qw (Exporter);
@EXPORT = qw (
indexBigPhastConsFile
readBigPhastConsFile
readPhastConsIndexFile
);
=head1 NAME
PhastCons - read and write bio annotation files
=cut
use strict;
use warnings;
use Data::Dumper;
use Carp;
use Common;
my $debug = 0;
=head2 indexBigPhastConsFile
index PhastCons file
the pointer indicate the position of the first line of each block
#->chromStart
#->chromEnd
#->chrom
#->pointer
my $indices = indexBigPhastConsFile ($inFile)
=cut
sub indexBigPhastConsFile
{
my $in = $_[0];
my @ret;
my $fin;
if ($in=~/\.gz$/)
{
open ($fin, "gunzip -c $in | ") ||Carp::croak "cannot open file $in to read\n";
}
elsif ($in=~/\.bz2$/)
{
open ($fin, "bunzip2 -c $in | ") ||Carp::croak "cannot open file $in to read\n";
}
else
{
open ($fin, "<$in")|| Carp::croak "can not open file $in to read\n";
}
my $entry = 0;
my $n = 0;
while (my $line=<$fin>)
{
chomp $line;
next if $line=~/^\s*$/;
if ($line=~/^fixedStep\schrom=(.*?)\sstart=(\d+)\sstep=(\d+)$/)
{
if ($entry)
{
$entry->{"chromEnd"} = $entry->{"chromStart"} + $n - 1;
push @ret, $entry;
}
$entry = {chrom=>$1, chromStart=>$2, step=>$3, pointer=>tell($fin)};
$n = 0;
}
else
{
next unless $entry;
$n++;
}
}
close ($fin);
if ($entry)
{
$entry->{"chromEnd"} = $entry->{"chromStart"} + $n - 1;
push @ret, $entry;
}
return {file=>Common::getFullPath($in), index=>\@ret};
}
=head2 readPhastConsIndexFile
Notes: original name: readPhastconsIndexFile
Index phastcons file for efficient accessing
my $indices = readPhastConsIndexFile ($inFile);
Status: tested
=cut
sub readPhastConsIndexFile
{
my $in = $_[0];
my $fin;
open ($fin, "<$in") || Carp::croak "can not open file $in to read\n";
my $line = <$fin>;
chomp $line;
my ($tmp, $file) = split ("=", $line);
my @ret;
while ($line =<$fin>)
{
chomp $line;
next if $line=~/^\s*$/;
my ($chrom, $chromStart, $chromEnd, $step, $pointer) = split ("\t", $line);
push @ret, {chrom=>$chrom, chromStart=>$chromStart, chromEnd=>$chromEnd, step=>$step, pointer=>$pointer};
}
close ($fin);
return {file=>$file, index=>\@ret};
}
=head2 readBigPhastConsFile
read phastcons between $chromStart and $chromEnd from a block specified by $blockInfo
my $info = readBigPhastConsFile ($inFile, $blockInfo, $chromStart, $chromEnd);
blockInfo{chrom=>, chromStart=>, chromEnd=>, step=>, pointer=>
generated by readPhastConsIndexFile (above)
scores in the region specified by $chromStart and $chromEnd will be returned
return:
{
chrom=>$blockInfo->{"chrom"},
chromStart=>$start,
chromEnd=>$end,
step=>$step,
scores=>\@ret
}
Status: tested
=cut
sub readBigPhastConsFile
{
my ($in, $blockInfo, $chromStart, $chromEnd) = @_;
my $blockChromStart = $blockInfo->{"chromStart"} - 1;
my $blockChromEnd = $blockInfo->{"chromEnd"} - 1;
#fix 05/08/2011
#Note wiggle files are 1-based coordinates, so we convert it into 0-based coordinates
#to be consistent with the bed format
my $step = $blockInfo->{"step"};
my @ret;
return 0 if ($blockChromStart > $chromEnd || $chromStart > $blockChromEnd); #no overlap
my $start = ($blockChromStart >= $chromStart) ? $blockChromStart : $chromStart;
my $end = ($blockChromEnd <= $chromEnd) ? $blockChromEnd : $chromEnd;
my $fin;
open ($fin, "<$in") || Carp::croak "can not open file $in to read\n";
seek ($fin, $blockInfo->{"pointer"}, 0); #go to the first line of the block
for (my $i = $blockChromStart; $i <= $blockChromEnd; $i+= $step)
{
my $line = <$fin>;
chomp $line;
if ($i >= $start && $i <= $end)
{
push @ret, $line;
}
elsif ($i > $end)
{
last;
}
}
close ($fin);
return {chrom=>$blockInfo->{"chrom"}, chromStart=>$start, chromEnd=>$end, step=>$step, scores=>\@ret};
}
1;