Skip to content

Commit

Permalink
Remove now unnecessary canonical read length 300
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelm committed Dec 12, 2023
1 parent 73cc97e commit 7f5c327
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ it can map reads to it.
The optimal indexing parameters depend on the length of the input reads.
There are currently seven different pre-defined sets of parameters that are
optimized for different read lengths. These *canonical read lengths* are
50, 100, 125, 150, 250, 300 and 400. When deciding which of the pre-defined
50, 100, 125, 150, 250 and 400. When deciding which of the pre-defined
indexing parameter sets to use, strobealign chooses one whose canonical
read length is close to the average read length of the input.

Expand Down
3 changes: 1 addition & 2 deletions src/indexparameters.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ static std::vector<Profile> profiles = {
Profile{100, 110, 20, -4, -2, 2},
Profile{125, 135, 20, -4, -1, 4},
Profile{150, 175, 20, -4, 1, 7},
Profile{250, 275, 22, -4, 2, 12},
Profile{300, 375, 22, -4, 2, 12},
Profile{250, 375, 22, -4, 2, 12},
Profile{400, max, 23, -6, 2, 12},
};

Expand Down

0 comments on commit 7f5c327

Please sign in to comment.