-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathretrieve_metadata_from_GenBank_file.pl
257 lines (222 loc) · 4.54 KB
/
retrieve_metadata_from_GenBank_file.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
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
#!/usr/bin/env perl
# Retrieves metadata from GenBank .gb file and outputs as a table, one row per sequence.
# Usage:
# perl retrieve_metadata_from_GenBank_file.pl [GenBank .gb file]
# Prints to console. To print to file, use
# perl retrieve_metadata_from_GenBank_file.pl [GenBank .gb file] > [output table path]
use strict;
use warnings;
my $genbank_gb_file = $ARGV[0];
my $NEWLINE = "\n";
my $DELIMITER = "\t";
# verifies that input file exists and is not empty
if(!$genbank_gb_file or !-e $genbank_gb_file or -z $genbank_gb_file)
{
print STDERR "Error: GenBank .gb file not provided, does not exist, or empty:\n\t"
.$genbank_gb_file."\nExiting.\n";
die;
}
# prints header line
print "accession".$DELIMITER;
print "name".$DELIMITER;
print "length".$DELIMITER;
print "organism".$DELIMITER;
print "mol_type".$DELIMITER;
print "strain".$DELIMITER;
print "isolation_source".$DELIMITER;
print "host".$DELIMITER;
print "geo_loc_name".$DELIMITER;
print "collection_date".$DELIMITER;
print "note".$DELIMITER;
print "authors".$DELIMITER;
print "title".$NEWLINE;
# reads in GenBank file and prints data of interest
my $accession = "";
my $name = "";
my $length = "";
my $organism = "";
my $mol_type = "";
my $strain = "";
my $isolation_source = "";
my $host = "";
my $geo_loc_name = "";
my $collection_date = "";
my $note = "";
my $note_continuing = 0;
my $authors = "";
my $authors_continuing = 0;
my $title = "";
my $title_continuing = 0;
open GENBANK_FILE, "<$genbank_gb_file" || die "Could not open $genbank_gb_file to read; terminating =(\n";
while(<GENBANK_FILE>) # for each row in the file
{
chomp;
my $line = $_;
# start of new entry
if($line =~ /LOCUS /)
{
# print previous entry
if($accession)
{
print $accession.$DELIMITER;
print $name.$DELIMITER;
print $length.$DELIMITER;
print $organism.$DELIMITER;
print $mol_type.$DELIMITER;
print $strain.$DELIMITER;
print $isolation_source.$DELIMITER;
print $host.$DELIMITER;
print $geo_loc_name.$DELIMITER;
print $collection_date.$DELIMITER;
print $note.$DELIMITER;
print $authors.$DELIMITER;
print $title.$NEWLINE;
}
# clear for new entry
$accession = "";
$name = "";
$length = "";
$organism = "";
$mol_type = "";
$strain = "";
$isolation_source = "";
$host = "";
$geo_loc_name = "";
$collection_date = "";
$note = "";
$authors = "";
$title = "";
}
# length
if($line =~ /LOCUS.+ (\d+ bp)/)
{
$length = $1;
}
# accession (version)
if($line =~ /VERSION (.*)$/)
{
$accession = $1;
}
# accession (version)
if($line =~ /DEFINITION (.*)$/)
{
$name = $1;
}
# organism
if($line =~ / \/organism="(.*)"/)
{
$organism = $1;
}
# mol_type
if($line =~ / \/mol_type="(.*)"/)
{
$mol_type = $1;
}
# strain
if($line =~ / \/strain="(.*)"/)
{
$strain = $1;
}
# isolation_source
if($line =~ / \/isolation_source="(.*)"/)
{
$isolation_source = $1;
}
# host
if($line =~ / \/host="(.*)"/)
{
$host = $1;
}
# geo_loc_name
if($line =~ / \/geo_loc_name="(.*)"/)
{
$geo_loc_name = $1;
}
# collection_date
if($line =~ / \/collection_date="(.*)"/)
{
$collection_date = $1;
}
# note
if($line =~ / \/note="(.*?)"?$/)
{
$note = $1;
$note_continuing = 1;
}
elsif($note_continuing)
{
if($line =~ / ([^"\/].*?)"?$/)
{
$note .= " ".$1;
}
else
{
$note_continuing = 0;
}
}
# authors
if($line =~ / AUTHORS (.*)/)
{
if($authors)
{
$authors .= "; ";
}
$authors .= $1;
$authors_continuing = 1;
}
elsif($authors_continuing)
{
if($line =~ / (.*)/)
{
$authors .= " ".$1;
}
else
{
$authors_continuing = 0;
}
}
# title
if($line =~ / TITLE (.*)/)
{
if($1 ne "Direct Submission")
{
if($title)
{
$title .= "; ";
}
$title .= $1;
$title_continuing = 1;
}
}
elsif($title_continuing)
{
if($line =~ / (.*)/)
{
$title .= " ".$1;
}
else
{
$title_continuing = 0;
}
}
# title
}
close GENBANK_FILE;
# print last entry
if($accession)
{
print $accession.$DELIMITER;
print $name.$DELIMITER;
print $length.$DELIMITER;
print $organism.$DELIMITER;
print $mol_type.$DELIMITER;
print $strain.$DELIMITER;
print $isolation_source.$DELIMITER;
print $host.$DELIMITER;
print $geo_loc_name.$DELIMITER;
print $collection_date.$DELIMITER;
print $note.$DELIMITER;
print $authors.$DELIMITER;
print $title.$NEWLINE;
}
# November 18, 2024