-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathobo-filter-unused.pl
executable file
·151 lines (129 loc) · 2.64 KB
/
obo-filter-unused.pl
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
#!/usr/bin/perl -w
use strict;
my $idspace;
my $verbose;
my $filter_dangling = 1; # default
while ($ARGV[0] =~ /^\-/) {
my $opt = shift @ARGV;
if ($opt eq '-h' || $opt eq '--help') {
print usage();
exit 0;
}
elsif ($opt eq '--xp2rel') {
# default
}
elsif ($opt eq '--idspace') {
$idspace = shift @ARGV;
}
elsif ($opt eq '--verbose' || $opt eq '-v') {
$verbose = 1;
}
elsif ($opt eq '-') {
}
else {
die "$opt";
}
}
# ----------------------------------------
# keep track of references typedefs, synonymtypedefs etc
# ----------------------------------------
my %synonymtypedef = ();
my %subsetdef = ();
my %used = ();
# ----------------------------------------
# load all lines
# ----------------------------------------
my @all_lines = ();
while (<>) {
s/\s+$//;
chomp;
if (/^synonym:\s*\".*\"\s+(\w+)\s+(\S+)/) {
$synonymtypedef{$2} = 1;
}
elsif (/^intersection_of:\s*(\S+)/) {
$used{$1} = 1;
}
elsif (/^relationship:\s*(\S+)/) {
$used{$1} = 1;
}
elsif (/^transitive_over:\s*(\S+)/) {
$used{$1} = 1;
}
elsif (/^holds_over_chain:\s*(\S+)\s+(\S+)/) {
$used{$1} = 1;
$used{$2} = 1;
}
elsif (/^is_a:\s*(\S+)/) {
$used{$1} = 1;
}
elsif (/^subset:\s*(\S+)/) {
$subsetdef{$1} = 1;
}
push(@all_lines,$_);
}
# ----------------------------------------
# process all lines
# ----------------------------------------
my @lines = ();
my $id;
my $st;
my $hide = 0;
foreach (@all_lines) {
chomp;
if (/^\[(\S+)\]/) {
$st = $1;
$hide = 0;
}
elsif (/^id:\s*(\S+)/) {
$id = $1;
if ($st eq 'Typedef') {
if (!$used{$id}) {
$hide = 1;
while ($lines[-1] !~ /^\[/) {
pop @lines;
}
pop @lines;
}
}
}
elsif (/^synonymtypedef:\s*(\S+)/) {
if (!$used{$1}) {
next;
}
}
elsif (/^subsetdef:\s*(\S+)/) {
if (!$subsetdef{$1}) {
next;
}
}
if ($hide) {
next;
}
if (!$idspace) {
if (/^id:\s+(\S+):(\S+)/) {
$idspace = $1;
}
}
# buffer
push(@lines, $_);
}
# ----------------------------------------
# write file
# ----------------------------------------
foreach (@lines) {
print "$_\n";
}
exit 0;
sub scriptname {
my @p = split(/\//,$0);
pop @p;
}
sub usage {
my $sn = scriptname();
<<EOM;
$sn [--idspace IDSPACE] FILE
strips all tags except selected
Example:
$sn -t id -t xref gene_ontology.obo
EOM
}