File: typos.patch

package info (click to toggle)
seer 1.1.4-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,692 kB
  • sloc: cpp: 2,945; perl: 596; python: 122; makefile: 93; sh: 43
file content (28 lines) | stat: -rw-r--r-- 1,628 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
Description: fix typos caught by lintian.
Author: Étienne Mollier <emollier@debian.org>
Forwarded: https://github.com/johnlees/seer/pull/79
Last-Update: 2022-11-06
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- seer.orig/src/kmdsCmdLine.cpp
+++ seer/src/kmdsCmdLine.cpp
@@ -38,7 +38,7 @@
     ("no_filtering", "turn off all filtering and do not output new kmer file")
     ("max_length", po::value<long int>()->default_value(max_length_default), "maximum kmer length")
     ("maf", po::value<double>()->default_value(maf_default), "minimum kmer frequency")
-    ("min_words", po::value<int>(), "minimum kmer occurences. Overrides --maf");
+    ("min_words", po::value<int>(), "minimum kmer occurrences. Overrides --maf");
 
    po::options_description other("Other options");
    other.add_options()
--- seer.orig/src/seerCmdLine.cpp
+++ seer/src/seerCmdLine.cpp
@@ -42,7 +42,7 @@
     ("no_filtering", "turn off all filtering and perform tests on all kmers input")
     ("max_length", po::value<long int>()->default_value(max_length_default), "maximum kmer length")
     ("maf", po::value<double>()->default_value(maf_default), "minimum kmer frequency")
-    ("min_words", po::value<int>(), "minimum kmer occurences. Overrides --maf")
+    ("min_words", po::value<int>(), "minimum kmer occurrences. Overrides --maf")
     ("chisq", po::value<std::string>()->default_value(chisq_default), "p-value threshold for initial chi squared test. Set to 1 to show all")
     ("pval", po::value<std::string>()->default_value(pval_default), "p-value threshold for final logistic test. Set to 1 to show all");