Skip to content

Commit

Permalink
Per #1371, skip writing the PCT THRESH_i columns to the Series-Analys…
Browse files Browse the repository at this point in the history
…is output since they are not used
  • Loading branch information
JohnHalleyGotway committed Aug 23, 2024
1 parent f0a5eb7 commit 972f867
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/tools/core/series_analysis/series_analysis.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2052,6 +2052,8 @@ void store_stat_all_sal1l2(int n, const SL1L2Info &s_info) {
void store_stat_all_pct(int n, const PCTInfo &pct_info) {
StringArray pct_cols(get_pct_columns(pct_info.pct.nrows() + 1));
for(int i=0; i<pct_cols.n(); i++) {
// Skip unused "THRESH_" columns
if(pct_cols[i].find("THRESH_") != string::npos) continue;
store_stat_probabilistic(n, STATLineType::pct, pct_cols[i], pct_info);
}
}
Expand Down

0 comments on commit 972f867

Please sign in to comment.