File: spellings.patch

package info (click to toggle)
ngmlr 0.2.7%2Bgit20210816.a2a31fb%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 1,876 kB
  • sloc: cpp: 10,359; sh: 134; makefile: 10
file content (30 lines) | stat: -rw-r--r-- 1,278 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Author: Nilesh Patra <npatra974@gmail.com>
Description: Fix spelling mistakes.
Last-Changed: Wednesday - July 17, 2020

Index: ngmlr/src/AlignmentBuffer.cpp
===================================================================
--- ngmlr.orig/src/AlignmentBuffer.cpp
+++ ngmlr/src/AlignmentBuffer.cpp
@@ -2550,7 +2550,7 @@ void AlignmentBuffer::processShortRead(M
 	// Read is shorter then anchor length
 
 	verbose(0, true, "Read too short for long read cLIS");
-	verbose(0, true, "Processing ShortRead: %d - %s (lenght %d)", read->ReadId, read->name, read->length);
+	verbose(0, true, "Processing ShortRead: %d - %s (length %d)", read->ReadId, read->name, read->length);
 
 	if (read->numScores() > 0) {
 
Index: ngmlr/src/NGMTask.cpp
===================================================================
--- ngmlr.orig/src/NGMTask.cpp
+++ ngmlr/src/NGMTask.cpp
@@ -20,7 +20,7 @@ void NGMTask::Run() {
 	try {
 		DoRun();
 	} catch (std::bad_alloc & ex) {
-		Log.Error("Exception bad_alloc occured in thread %i. This usually means you ran out of physical or virtual memory (try ulimit -v)", m_TID);
+		Log.Error("Exception bad_alloc occurred in thread %i. This usually means you ran out of physical or virtual memory (try ulimit -v)", m_TID);
 	}
 	catch (...)
 	{