-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfannotatefeatureswithgenes
executable file
·454 lines (405 loc) · 15.9 KB
/
fannotatefeatureswithgenes
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
#!/usr/bin/perl
use warnings;
use DBI;
use DBD::mysql;
use strict;
use fralib;
use File::Basename;
use Getopt::Long;
use Pod::Usage;
use POSIX qw(ceil floor);
=head1 NAME
fannotatefeatureswithgenes
=head1 SYNOPSIS
fannotatefeatureswithgenes [options] <mk-file>
-h help
-b build version (hg17|hg18)
-w window size (10000 default) [0,1M]
--mask mask unannotated SNPs (default off)
mk-file marker file
a)feature-id
b)chromosome
c)feature-start
d)feature-end
example: fannotatefeatureswithgenes pscalare.mk -b hg17 -w 10000
Annotations are based on UCSC tables and GO database.
Returns a marker file : gene-annotated-<mk-file>
a)feature-id : feature name
b)chromosome : chromosome where SNP is located
c)feature-start : feature start
d)feature-end : feature end
e)known-gene-id : gene ID in the known/UCSC gene table (UCSC)
f)entrez-id : entrez gene ID (UCSC)
g)gene-strand : strand of gene (UCSC)
h)tx-start : transcription start position (UCSC)
i)tx-end : transcription end position (UCSC)
j)gene-symbol : gene symbol (UCSC)
k)gene-description : gene description (UCSC)
l)pathway : KEGG pathway description (UCSC)
m)biological-process : GO category
n)molecular-function : GO category
o)cellular-component : GO category
=head1 DESCRIPTION
=cut
#option variables
my $help;
my $build = 'hg18';
my $mkFile;
my $windowSize = 10000;
my $maskUnannotatedFeatures = 0;
my $colNo;
my $headerProcessed;
my %FEATURE;
my %CHROM;
my %GENE;
my %label2Column;
my $annotationCount = 0;
#initialize options
Getopt::Long::Configure ('bundling');
if(!GetOptions ('h'=>\$help, 'b=s'=>\$build, 'w=i'=>\$windowSize, 'mask'=>\$maskUnannotatedFeatures)
|| $build !~ /(hg17|hg18)/
|| $windowSize < 0
|| $windowSize > 1000000
|| scalar(@ARGV)!=1)
{
if ($help)
{
pod2usage(-verbose => 2);
}
else
{
pod2usage(1);
}
}
$mkFile = $ARGV[0];
print STDERR <<SUMMARY;
=======
Options
=======
Build: $build
Window Size: $windowSize
Mask: $maskUnannotatedFeatures
=======
SUMMARY
print STDERR "Reading $mkFile\n";
open(MK, $mkFile) || die "Cannot open $mkFile";
$headerProcessed = 0;
while(<MK>)
{
s/\r?\n?$//;
if(!$headerProcessed)
{
$colNo = s/\t/\t/g + 1;
my @fields = split('\t', $_, $colNo);
SEARCH_LABEL: for my $label('feature-id', 'chromosome', 'feature-start', 'feature-end')
{
for my $col (0 .. $#fields)
{
if ($fields[$col] eq $label)
{
$label2Column{$label}=$col;
next SEARCH_LABEL;
}
}
die "Cannot find '$label' in $mkFile";
}
$headerProcessed = 1;
}
else
{
my @fields = split('\t', $_, $colNo);
my $featureID = $fields[$label2Column{'feature-id'}];
my $chromosome = $fields[$label2Column{'chromosome'}];
$chromosome = $chromosome eq 'XY' ? 'X' : $chromosome;
my $featureStart = $fields[$label2Column{'feature-start'}];
my $featureEnd = $fields[$label2Column{'feature-end'}];
if ($chromosome ne 'n/a' && $featureStart ne 'n/a' && $featureEnd ne 'n/a')
{
$FEATURE{$featureID}{CHROM} = $chromosome;
$FEATURE{$featureID}{START} = $featureStart;
$FEATURE{$featureID}{END} = $featureEnd;
$FEATURE{$featureID}{ANNOTATED} = 0;
$CHROM{$chromosome}{$featureID} = 1;
}
else
{
warn "$featureID has no location";
}
}
}
close(MK);
my $dbh = DBI->connect(getDBConnectionString(), getDBUser(), getDBUserPassword()) || die "Couldn't connect to database: " . DBI->errstr;
open(FEATURE_ANNOTATED_MK, ">gene-annotated-$mkFile") || die "Cannot open gene-annotated-$mkFile";
print FEATURE_ANNOTATED_MK "feature-id\tchromosome\tfeature-start\tfeature-end\tknown-gene-id\tentrez-id\tgene-strand\ttx-start\ttx-end\tgene-symbol\tgene-description\tpathway\tbiological-process\tmolecular-function\tcellular-component\n";
if ($build eq 'hg17')
{
#populate gene annotation
print STDERR "retrieving gene annotation ... ";
print STDERR "kegg ... ";
$dbh->do(qq{
drop table if exists temp_kgid2keggpathway;
});
$dbh->do(qq{
create table temp_kgid2keggpathway
select kgID, description as pathway
from hg17_keggPathway as a left join hg17_keggMapDesc as b
on a.mapID = b.mapID;
});
$dbh->do(qq{
alter table temp_kgid2keggpathway add index(kgID);
});
$dbh->do(qq{
drop table if exists temp_gene_pathway;
});
$dbh->do(qq{
create table temp_gene_pathway
select a.kgID, geneSymbol, description, pathway
from hg17_kgXref as a left join temp_kgid2keggpathway as b
on a.kgID = b.kgID;
});
print STDERR "GO ... ";
$dbh->do(qq{
drop table if exists temp_gene_pathway_go;
});
$dbh->do(qq{
create table temp_gene_pathway_go
select a.*, b.biological_process, b.molecular_function, b.cellular_component
from temp_gene_pathway as a left join hg17_kgXgo as b
on a.geneSymbol = b.geneSymbol;
});
print STDERR "Entrez ID ... ";
$dbh->do(qq{
drop table if exists temp_gene_pathway_go_entrez;
}) || die;
$dbh->do(qq{
create table temp_gene_pathway_go_entrez
select a.*, b.value as entrezID
from temp_gene_pathway_go as a left join hg17_knownToLocusLink as b
on a.kgID = b.name;
}) || die;
print STDERR "aggregating\n";
$dbh->do(qq{
drop table if exists temp_gene_pathway_go_entrez_aggregate;
});
$dbh->do(qq{
create table temp_gene_pathway_go_entrez_aggregate
select kgID as gene_id,
group_concat(distinct entrezID) as entrez_id,
group_concat(distinct geneSymbol) as gene_symbol,
group_concat(distinct description) as gene_description,
group_concat(distinct pathway) as pathway,
group_concat(distinct biological_process) as biological_process,
group_concat(distinct molecular_function) as molecular_function,
group_concat(distinct cellular_component) as cellular_component
from temp_gene_pathway_go group by kgID;
});
my $queryHandle = $dbh->prepare(qq{
select * from temp_gene_pathway_go_aggregate
});
$queryHandle->execute();
my ($geneID, $entrezID, $geneSymbol, $geneDescription, $pathway, $biologicalProcess, $molecularFunction, $cellularComponent);
$queryHandle->bind_columns(\($geneID, $entrezID, $geneSymbol, $geneDescription, $pathway, $biologicalProcess, $molecularFunction, $cellularComponent));
while (my @row = $queryHandle->fetchrow_array())
{
$GENE{$geneID}{GS} = !defined($geneSymbol) ? 'n/a' : $geneSymbol;
$GENE{$geneID}{ENTREZ_ID} = !defined($entrezID) ? 'n/a' : $entrezID;
$GENE{$geneID}{GD} = !defined($geneDescription) ? 'n/a' : $geneDescription;
$GENE{$geneID}{PW} = !defined($pathway) ? 'n/a' : $pathway;
$GENE{$geneID}{BP} = !defined($biologicalProcess) ? 'n/a' : $biologicalProcess;
$GENE{$geneID}{MF} = !defined($molecularFunction) ? 'n/a' : $molecularFunction;
$GENE{$geneID}{CC} = !defined($cellularComponent) ? 'n/a' : $cellularComponent;
}
$dbh->do(qq{
drop table if exists temp_kgid2keggpathway;
});
$dbh->do(qq{
drop table if exists temp_gene_pathway;
});
$dbh->do(qq{
drop table if exists temp_gene_pathway_go;
});
$dbh->do(qq{
drop table if exists temp_gene_pathway_go_entrez;
});
$dbh->do(qq{
drop table if exists temp_gene_pathway_go_entrez_aggregate;
});
$queryHandle->finish();
for my $chromosome (sort {if("$a$b"=~/^\d+$/){$a <=> $b}else{$a cmp $b}} keys(%CHROM))
{
print STDERR "Processing chromosome $chromosome ... ";
print STDERR "annotating features with genes ... ";
$queryHandle = $dbh->prepare(qq{
select name, txstart, txend, strand from hg17_knownGene where chrom = 'chr$chromosome'
});
$queryHandle->execute();
my ($name, $txstart, $txend, $strand);
$queryHandle->bind_columns(\$name, \$txstart, \$txend, \$strand);
my $chromosomeAnnotationCount = 0;
while (my @row = $queryHandle->fetchrow_array())
{
++$txstart;
my $leftWindowStart = $txstart - $windowSize; #it's ok to be negative
my $rightWindowEnd = $txend + $windowSize;
my $featureStart;
my $featureEnd;
for my $feature (keys(%{$CHROM{$chromosome}}))
{
$featureStart = $FEATURE{$feature}{START};
$featureEnd = $FEATURE{$feature}{END};
if ($featureStart<=$rightWindowEnd && $featureEnd>=$leftWindowStart)
{
print FEATURE_ANNOTATED_MK "$feature\t$chromosome\t$featureStart\t$featureEnd\t$name\t$GENE{$name}{ENTREZ_ID}\t$strand\t$txstart\t$txend";
print FEATURE_ANNOTATED_MK "\t$GENE{$name}{GS}\t$GENE{$name}{GD}\t$GENE{$name}{PW}\t$GENE{$name}{BP}\t$GENE{$name}{MF}\t$GENE{$name}{CC}\n";
$FEATURE{$feature}{ANNOTATED} = 1;
++$chromosomeAnnotationCount;
}
}
}
$queryHandle->finish();
$annotationCount += $chromosomeAnnotationCount;
print STDERR "$chromosomeAnnotationCount annotations for " . scalar(keys(%{$CHROM{$chromosome}})) . " features\n";
}
}
elsif ($build eq 'hg18')
{
#populate gene annotation
print STDERR "retrieving gene annotation ... ";
print STDERR "kegg ... ";
$dbh->do(qq{
drop table if exists temp_kgid2keggpathway;
}) || die;
$dbh->do(qq{
create table temp_kgid2keggpathway
select kgID, description as pathway
from hg18_keggPathway as a left join hg18_keggMapDesc as b
on a.mapID = b.mapID;
}) || die;
$dbh->do(qq{
alter table temp_kgid2keggpathway add index(kgID);
}) || die;
$dbh->do(qq{
drop table if exists temp_gene_pathway;
}) || die;
$dbh->do(qq{
create table temp_gene_pathway
select a.kgID, geneSymbol, description, pathway
from hg18_kgXref as a left join temp_kgid2keggpathway as b
on a.kgID = b.kgID;
}) || die;
print STDERR "GO ... ";
$dbh->do(qq{
drop table if exists temp_gene_pathway_go;
}) || die;
$dbh->do(qq{
create table temp_gene_pathway_go
select a.*, b.biological_process, b.molecular_function, b.cellular_component
from temp_gene_pathway as a left join hg17_kgXgo as b
on a.geneSymbol = b.geneSymbol;
}) || die;
print STDERR "Entrez ID ... ";
$dbh->do(qq{
drop table if exists temp_gene_pathway_go_entrez;
}) || die;
$dbh->do(qq{
create table temp_gene_pathway_go_entrez
select a.*, b.value as entrezID
from temp_gene_pathway_go as a left join hg18_knownToLocusLink as b
on a.kgID = b.name;
}) || die;
print STDERR "aggregating\n";
$dbh->do(qq{
drop table if exists temp_gene_pathway_go_entrez_aggregate;
});
$dbh->do(qq{
create table temp_gene_pathway_go_entrez_aggregate
select kgID as gene_id,
group_concat(distinct entrezID) as entrezID,
group_concat(distinct geneSymbol) as gene_symbol,
group_concat(distinct description) as gene_description,
group_concat(distinct pathway) as pathway,
group_concat(distinct biological_process) as biological_process,
group_concat(distinct molecular_function) as molecular_function,
group_concat(distinct cellular_component) as cellular_component
from temp_gene_pathway_go_entrez group by kgID;
}) || die;
my $queryHandle = $dbh->prepare(qq{
select * from temp_gene_pathway_go_entrez_aggregate
});
$queryHandle->execute();
my ($geneID, $entrezID, $geneSymbol, $geneDescription, $pathway, $biologicalProcess, $molecularFunction, $cellularComponent);
$queryHandle->bind_columns(\($geneID, $entrezID, $geneSymbol, $geneDescription, $pathway, $biologicalProcess, $molecularFunction, $cellularComponent));
while (my @row = $queryHandle->fetchrow_array())
{
$GENE{$geneID}{GS} = !defined($geneSymbol) ? 'n/a' : $geneSymbol;
$GENE{$geneID}{ENTREZ_ID} = !defined($entrezID) ? 'n/a' : $entrezID;
$GENE{$geneID}{GD} = !defined($geneDescription) ? 'n/a' : $geneDescription;
$GENE{$geneID}{PW} = !defined($pathway) ? 'n/a' : $pathway;
$GENE{$geneID}{BP} = !defined($biologicalProcess) ? 'n/a' : $biologicalProcess;
$GENE{$geneID}{MF} = !defined($molecularFunction) ? 'n/a' : $molecularFunction;
$GENE{$geneID}{CC} = !defined($cellularComponent) ? 'n/a' : $cellularComponent;
}
$dbh->do(qq{
drop table if exists temp_kgid2keggpathway;
}) || die;
$dbh->do(qq{
drop table if exists temp_gene_pathway;
}) || die;
$dbh->do(qq{
drop table if exists temp_gene_pathway_go;
}) || die;
$dbh->do(qq{
drop table if exists temp_gene_pathway_go_entrez;
}) || die;
$dbh->do(qq{
drop table if exists temp_gene_pathway_go_entrez_aggregate;
}) || die;
$queryHandle->finish();
for my $chromosome (sort {if("$a$b"=~/^\d+$/){$a <=> $b}else{$a cmp $b}} keys(%CHROM))
{
print STDERR "Processing chromosome $chromosome ... ";
print STDERR "annotating features with genes ... ";
$queryHandle = $dbh->prepare(qq{
select name, txstart, txend, strand from hg18_knownGene where chrom = 'chr$chromosome'
});
$queryHandle->execute();
my ($name, $txstart, $txend, $strand);
$queryHandle->bind_columns(\$name, \$txstart, \$txend, \$strand);
my $chromosomeAnnotationCount = 0;
while (my @row = $queryHandle->fetchrow_array())
{
++$txstart;
my $leftWindowStart = $txstart - $windowSize; #it's ok to be negative
my $rightWindowEnd = $txend + $windowSize;
my $featureStart;
my $featureEnd;
for my $feature (keys(%{$CHROM{$chromosome}}))
{
$featureStart = $FEATURE{$feature}{START};
$featureEnd = $FEATURE{$feature}{END};
if ($featureStart<=$rightWindowEnd && $featureEnd>=$leftWindowStart)
{
print FEATURE_ANNOTATED_MK "$feature\t$chromosome\t$featureStart\t$featureEnd\t$name\t$GENE{$name}{ENTREZ_ID}\t$strand\t$txstart\t$txend";
print FEATURE_ANNOTATED_MK "\t$GENE{$name}{GS}\t$GENE{$name}{GD}\t$GENE{$name}{PW}\t$GENE{$name}{BP}\t$GENE{$name}{MF}\t$GENE{$name}{CC}\n";
$FEATURE{$feature}{ANNOTATED} = 1;
++$chromosomeAnnotationCount;
}
}
}
$queryHandle->finish();
$annotationCount += $chromosomeAnnotationCount;
print STDERR "$chromosomeAnnotationCount annotations for " . scalar(keys(%{$CHROM{$chromosome}})) . " features\n";
}
}
if(!$maskUnannotatedFeatures)
{
for my $featureID (keys(%FEATURE))
{
if (!$FEATURE{$featureID}{ANNOTATED})
{
print FEATURE_ANNOTATED_MK "$featureID\t$FEATURE{$featureID}{CHROM}\t$FEATURE{$featureID}{START}\t$FEATURE{$featureID}{END}" . "\tn/a" x 11 . "\n";
}
}
}
close(FEATURE_ANNOTATED_MK);
$dbh->disconnect();