forked from vgteam/vg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add edge crossing limit to kpaths/kmers generation
When going previous or next from a given node, count the number of edges we cross and bail out if it exceeds a user-defined cap (which is ~infinity) by default. This provides a simple way to avoid indexing regions which have very high complexity, and are likely to reduce the specificity of mapping in addition to adding excess weight to the kmer index. This is likely to be important for longer kmer sizes.
- Loading branch information
Showing
8 changed files
with
111 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ | |
vg | ||
*.a | ||
*~ | ||
*.vg | ||
*.dot | ||
*.png | ||
test/make_graph | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.