Permalink
Browse files

Fixes blank cutoff in sens.spec

  • Loading branch information...
1 parent c7ce20c commit ff065a53fd490638545748621944093759ae6b69 @mothur-westcott mothur-westcott committed Aug 8, 2016
Showing with 2 additions and 2 deletions.
  1. +2 −2 source/commands/sensspeccommand.cpp
@@ -451,8 +451,8 @@ int SensSpecCommand::processListFile(){
string origCutoff = "";
bool getCutoff = 0;
- if(cutoff == -1.00) { getCutoff = 1; }
- else { origCutoff = m->ceilDist(cutoff, precision); }
+ if(cutoff == -1.00) { getCutoff = 1; }
+ else { origCutoff = toString(m->ceilDist(cutoff, precision)); }
map<string, int> seqMap;

0 comments on commit ff065a5

Please sign in to comment.