Skip to content

Commit

Permalink
fix get_data() call
Browse files Browse the repository at this point in the history
  • Loading branch information
mikejiang committed Jun 25, 2020
1 parent 46417dd commit 3411a91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inst/include/CytoML/flowJoWorkspace.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ class flowJoWorkspace:public workspace{
if(!keep_uncomp.empty()){
if(g_loglevel>=GATING_HIERARCHY_LEVEL)
PRINT("Extracting necessary uncompensated columns...\n");
uncomp_cols = fr.get_data(fr.get_col_idx(vector<string>(keep_uncomp.begin(), keep_uncomp.end()), ColType::channel));
uncomp_cols = fr.get_data(fr.get_col_idx(vector<string>(keep_uncomp.begin(), keep_uncomp.end()), ColType::channel), true);
}

gh->compensate(fr);
Expand Down

0 comments on commit 3411a91

Please sign in to comment.