1226 |
} else { |
} else { |
1227 |
Trace("Generating external data.") if T(2); |
Trace("Generating external data.") if T(2); |
1228 |
# We loop through the files one at a time. First, the organism file. |
# We loop through the files one at a time. First, the organism file. |
1229 |
Open(\*ORGS, "<$FIG_Config::global/ext_org.table"); |
Open(\*ORGS, "sort +0 -1 -u -t\"\t\" $FIG_Config::global/ext_org.table |"); |
1230 |
my $orgLine; |
my $orgLine; |
1231 |
while (defined($orgLine = <ORGS>)) { |
while (defined($orgLine = <ORGS>)) { |
1232 |
# Clean the input line. |
# Clean the input line. |
1238 |
close ORGS; |
close ORGS; |
1239 |
# Now the function file. |
# Now the function file. |
1240 |
my $funcLine; |
my $funcLine; |
1241 |
Open(\*FUNCS, "<$FIG_Config::global/ext_func.table"); |
Open(\*FUNCS, "sort +0 -1 -u -t\"\t\" $FIG_Config::global/ext_func.table |"); |
1242 |
while (defined($funcLine = <FUNCS>)) { |
while (defined($funcLine = <FUNCS>)) { |
1243 |
# Clean the line ending. |
# Clean the line ending. |
1244 |
chomp $funcLine; |
chomp $funcLine; |