Skip to content

Commit

Permalink
Fixes typo in esl_sqio_ReadBlock Purpose: comments, max -> min
Browse files Browse the repository at this point in the history
  • Loading branch information
nawrockie committed Dec 6, 2019
1 parent 23f3dbd commit 6cf15a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion esl_sqio_ascii.c
Original file line number Diff line number Diff line change
Expand Up @@ -1425,7 +1425,7 @@ sqascii_ReadWindow(ESL_SQFILE *sqfp, int C, int W, ESL_SQ *sq)
*
* If <long_target> is true and <max_init_window> is TRUE,
* the first window read from each sequence (of length L)
* is always max(L, <max_residues>). If <max_init_window>
* is always min(L, <max_residues>). If <max_init_window>
* is FALSE, then the length of the first window read from
* each sequence is calculated differently as
* max(<max_residues> - <size>, <max_residues> * .05);
Expand Down
2 changes: 1 addition & 1 deletion esl_sqio_ncbi.c
Original file line number Diff line number Diff line change
Expand Up @@ -1148,7 +1148,7 @@ sqncbi_ReadWindow(ESL_SQFILE *sqfp, int C, int W, ESL_SQ *sq)
*
* If <long_target> is true and <max_init_window> is TRUE,
* the first window read from each sequence (of length L)
* is always max(L, <max_residues>). If <max_init_window>
* is always min(L, <max_residues>). If <max_init_window>
* is FALSE, then the length of the first window read from
* each sequence is calculated differently as
* max(<max_residues> - <size>, <max_residues> * .05);
Expand Down

0 comments on commit 6cf15a8

Please sign in to comment.