File: spelling-fixes

package info (click to toggle)
berkeley-express 1.5.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,760 kB
  • sloc: cpp: 4,785; sh: 65; makefile: 11
file content (37 lines) | stat: -rw-r--r-- 1,489 bytes parent folder | download | duplicates (5)
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
31
32
33
34
35
36
37
Author: Michael R. Crusoe <crusoe@ucdavis.edu>
Last-Update: Fri, 21 Aug 2015 09:21:09 +0100
Description: Correct upstream typos

--- express.orig/src/lengthdistribution.cpp
+++ express/src/lengthdistribution.cpp
@@ -72,7 +72,7 @@
   char line_buff[BUFF_SIZE];
   
   if (!infile.is_open()) {
-    logger.severe("Unable to open paramater file '%s'.",
+    logger.severe("Unable to open parameter file '%s'.",
                   param_file_name.c_str());
   }
 
--- express.orig/src/main.cpp
+++ express/src/main.cpp
@@ -683,7 +683,7 @@
             break;
           }
           {
-            // Block the bias update thread from updating the paramater tables
+            // Block the bias update thread from updating the parameter tables
             // during processing. We don't need to do this during multi-threaded
             // processing since the parameters are burned out before we start
             // the threads.
--- express.orig/src/markovmodel.h
+++ express/src/markovmodel.h
@@ -125,7 +125,7 @@
   double marginal_prob(size_t w, size_t nuc) const;
   /**
    * Slides a window along the given sequence, incrementing the highest order
-   * transition paramaters by the given mass multiplied by the probability of
+   * transition parameters by the given mass multiplied by the probability of
    * observing a fragment at that distance from the end.
    * @param seq the sequence to slide the window along.
    * @param mass the amount to increment the parameters by.