Skip to content

Commit

Permalink
Fix zipcode file in output of recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
xchang1 committed Nov 25, 2024
1 parent 626f925 commit ae25abf
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/index_registry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4096,7 +4096,8 @@ IndexRegistry VGIndexes::get_vg_index_registry() {
vector<vector<string>> all_outputs(constructing.size());
auto minimizer_output = *constructing.begin();
auto zipcode_output = *constructing.rbegin();
auto& output_names = all_outputs[0];
auto& output_name_minimizer = all_outputs[0];
auto& output_name_zipcodes = all_outputs[1];


ifstream infile_gbz;
Expand Down Expand Up @@ -4181,8 +4182,8 @@ IndexRegistry VGIndexes::get_vg_index_registry() {
oversized_zipcodes.serialize(zip_out);
zip_out.close();

output_names.push_back(output_name);
output_names.push_back(zipcodes_output_name);
output_name_minimizer.push_back(output_name);
output_name_zipcodes.push_back(zipcodes_output_name);
return all_outputs;
});

Expand Down

0 comments on commit ae25abf

Please sign in to comment.