Author: Laszlo Kajan <lkajan@debian.org>
LastChanged: Sun, 07 Sep 2014 20:49:59 +0200
Description: remove unknown escape sequences

--- a/disulfind/src/Common/Accuracy.h
+++ b/disulfind/src/Common/Accuracy.h
@@ -60,10 +60,10 @@
   }
 
   void Output(ostream &os) {
-    os<<"Accuracy= "  << (GetAccuracy()*100.)<<"\%\n";
-    os<<"Precision= " << (GetPrecision()*100.)<<"\%\n";
-    os<<"Recall= "    << (GetRecall()*100.)<<"\%\n";		     
-    os<<"FMeasure= "  << (GetFMeasure()*100.)<<"\%\n";
+    os<<"Accuracy= "  << (GetAccuracy()*100.)<<"%\n";
+    os<<"Precision= " << (GetPrecision()*100.)<<"%\n";
+    os<<"Recall= "    << (GetRecall()*100.)<<"%\n";		     
+    os<<"FMeasure= "  << (GetFMeasure()*100.)<<"%\n";
   }
 };
 
--- a/disulfind/src/Common/ConfusionMatrix.cpp
+++ b/disulfind/src/Common/ConfusionMatrix.cpp
@@ -43,10 +43,10 @@
 
 void ConfusionMatrix::Output( ostream &out )
 {
-  out << "Accuracy = " << (Accuracy()*100.) << "\%\n";
+  out << "Accuracy = " << (Accuracy()*100.) << "%\n";
   for( int c=0; c<m_noclasses; c++ ) {
-    out << "Precision class " << c << " = " << (Precision(c)*100.) << "\%\n";
-    out << "Recall class    " << c << " = " << (Recall(c)*100.)    << "\%\n";
+    out << "Precision class " << c << " = " << (Precision(c)*100.) << "%\n";
+    out << "Recall class    " << c << " = " << (Recall(c)*100.)    << "%\n";
   }
   
   //out.setf(ios_base::left,ios_base::adjustfield);
