Skip to content

Commit

Permalink
Change score decimal places from 2 to 4
Browse files Browse the repository at this point in the history
  • Loading branch information
wchronister committed Feb 8, 2022
1 parent 9295764 commit a26b385
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tcrmatch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ void multi_calc_k3(std::vector<peptide> peplist1, std::vector<peptide> peplist2,
std::vector<IEDB_data_row> match_row_vec = it->second;
for (int l = 0; l < match_row_vec.size(); l++) {
IEDB_data_row match_row = match_row_vec[l];
std::cout << std::fixed << std::setprecision(2) << std::get<0>(tuple)
std::cout << std::fixed << std::setprecision(4) << std::get<0>(tuple)
<< "\t" << std::get<1>(tuple) << "\t" << std::get<2>(tuple)
<< "\t" << match_row.receptor_group << "\t"
<< match_row.epitope << "\t" << match_row.antigen << "\t"
Expand Down

0 comments on commit a26b385

Please sign in to comment.