Skip to content

Commit

Permalink
remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
cmaceves committed Aug 15, 2024
1 parent 0e39e7b commit 1377fa0
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/call_consensus_clustering.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,15 +93,10 @@ void cluster_consensus(std::vector<variant> variants, std::string clustering_fil

//read in the cluster values
std::vector<float> means = parse_clustering_results(clustering_file);
for(auto xx : means){
std::cerr << xx << " ";
}
std::cerr << "\n";


//TODO: Solve clustering
std::vector<float> other_means;
for(uint32_t m=0; m < means.size(); m++){
std::cerr << "m " << means[m] << std::endl;
if(means[m] < (float)0.97 && means[m] > (float)0.03){
other_means.push_back(means[m]);
}
Expand Down

0 comments on commit 1377fa0

Please sign in to comment.