Skip to content

Commit 273ba1d

Browse files
authored
Merge pull request #311 from mr-c/spelling
Fix some typos
2 parents 93aedcd + fc0f77d commit 273ba1d

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1213,7 +1213,7 @@ Beta Release 0.1.4 (22 July, 2008)
12131213
Beta Release 0.1.3 (21 July, 2008)
12141214
----------------------------------
12151215

1216-
Improve the speed with some tricks on retrieving occurences. The results
1216+
Improve the speed with some tricks on retrieving occurrences. The results
12171217
should be exactly the same as that of 0.1.2.
12181218

12191219
(0.1.3: 21 July 2008, r382)

bwa.1

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ yields fewer seeds, which leads to faster alignment speed but lower accuracy. [1
202202
.BI -c \ INT
203203
Discard a MEM if it has more than
204204
.I INT
205-
occurence in the genome. This is an insensitive parameter. [500]
205+
occurrence in the genome. This is an insensitive parameter. [500]
206206
.TP
207207
.BI -D \ FLOAT
208208
Drop chains shorter than
@@ -235,7 +235,7 @@ Mismatch penalty. The sequence error rate is approximately: {.75 * exp[-log(4) *
235235
.TP
236236
.BI -O \ INT[,INT]
237237
Gap open penalty. If two numbers are specified, the first is the penalty of
238-
openning a deletion and the second for openning an insertion. [6]
238+
opening a deletion and the second for opening an insertion. [6]
239239
.TP
240240
.BI -E \ INT[,INT]
241241
Gap extension penalty. If two numbers are specified, the first is the penalty
@@ -260,7 +260,7 @@ two scores to determine whether we should force pairing. A larger value leads to
260260
more aggressive read pair. [17]
261261
.TP
262262
.BI -x \ STR
263-
Read type. Changes multiple parameters unless overriden [null]
263+
Read type. Changes multiple parameters unless overridden [null]
264264
.RS
265265
.TP 10
266266
.BR pacbio :
@@ -301,7 +301,7 @@ Write the output SAM file to
301301
For compatibility with other BWA commands, this option may also be given as
302302
.B -f
303303
.IR FILE .
304-
[standard ouptut]
304+
[standard output]
305305
.TP
306306
.B -q
307307
Don't reduce the mapping quality of split alignment of lower alignment score.
@@ -688,7 +688,7 @@ X1 Number of suboptimal hits found by BWA
688688
XN Number of ambiguous bases in the referenece
689689
XM Number of mismatches in the alignment
690690
XO Number of gap opens
691-
XG Number of gap extentions
691+
XG Number of gap extensions
692692
XT Type: Unique/Repeat/N/Mate-sw
693693
XA Alternative hits; format: /(chr,pos,CIGAR,NM;)*/
694694
_

bwamem.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ typedef struct {
6666
int min_chain_weight;
6767
int max_chain_extend;
6868
float split_factor; // split into a seed if MEM is longer than min_seed_len*split_factor
69-
int split_width; // split into a seed if its occurence is smaller than this value
70-
int max_occ; // skip a seed if its occurence is larger than this value
69+
int split_width; // split into a seed if its occurrence is smaller than this value
70+
int max_occ; // skip a seed if its occurrence is larger than this value
7171
int max_chain_gap; // do not chain seed if it is max_chain_gap-bp away from the closest seed
7272
int n_threads; // number of threads
7373
int chunk_size; // process chunk_size-bp sequences in a batch

0 commit comments

Comments
 (0)