1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
From: Michael R. Crusoe <crusoe@debian.org>
Subject: Fix spelling typo
Forwarded: https://github.com/BioPP/bpp-seq-omics/pull/13
--- libbpp-seq-omics.orig/src/Bpp/Seq/Io/Maf/OutputMafIterator.cpp
+++ libbpp-seq-omics/src/Bpp/Seq/Io/Maf/OutputMafIterator.cpp
@@ -119,7 +119,7 @@
} else if (s == 10) {
qualStr += "F";
} else {
- throw Exception("MafAlignmentParser::writeBlock. Unsuported score value: " + TextTools::toString(s));
+ throw Exception("MafAlignmentParser::writeBlock. Unsupported score value: " + TextTools::toString(s));
}
}
out << qualStr << endl;
|