Permalink
Browse files

WIP

  • Loading branch information...
1 parent 676f36b commit dfe9e4e3665223c85b71512a05da4277e4fa0ddf @mothur-westcott mothur-westcott committed Sep 22, 2016
Showing with 3 additions and 1 deletion.
  1. +3 −1 source/commands/sparcccommand.cpp
@@ -631,7 +631,9 @@ vector<vector<float> > SparccCommand::driver(vector<vector<float> >& sharedVecto
else if(observedValue < 0 && randValue < observedValue){ pValues[j][k]++; }//pvalues of small rho values
}
}
- if((i+1) % (int)(numPermutations * 0.05) == 0){ cout << i+1 << endl; }
+
+ float done = numPermutations * 0.05;
+ if((i+1) % (int)(done) == 0){ cout << i+1 << endl; }
}
return pValues;

0 comments on commit dfe9e4e

Please sign in to comment.