Permalink
Browse files
Fixes blank cutoff in sens.spec
- Loading branch information...
Showing
with
2 additions
and
2 deletions.
-
+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