-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MRG: add capacity for skipmer sketching and search #531
Merged
Conversation
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
bluegenes
force-pushed
the
try-skipmers
branch
from
November 21, 2024 00:40
a3a0670
to
f5e4153
Compare
* switch from pkg_resources to importlib.metadata * black
…n_branchwater into try-skipmers
bluegenes
changed the title
EXP: skipmer sketching
MRG: add capacity for skipmer sketching and search
Dec 20, 2024
prior to merge (or at least release), need to switch to sourmash 0.18.0 in Cargo.toml |
…n_branchwater into try-skipmers
…n_branchwater into try-skipmers
…n_branchwater into try-skipmers
…n_branchwater into try-skipmers
2 tasks
…n_branchwater into try-skipmers
…n_branchwater into try-skipmers
…water into try-skipmers
ctb
approved these changes
Dec 21, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Skipmers are something we've considered adding for quite some time, as DNA kmer that ~allows "mismatches" aka increases entropy + sensitivity.
Over in sourmash-bio/sourmash#3395, I added a
skipm1n3
andskipm2n3
moltypes, as well as code inSeqToHashes
to build them. In sourmash-bio/sourmash#3446 I also added capacity for sourmash python function to read skipmer sigs, sosig cat
,sig summarize
, etc should now work.There are two types of skipmers available, keep-2,skip-1 ("skipm2n3") and keep-1,skip-2 ("skipm1n3"). To sketch with skipmers, specify
skipm2n3
orskipm1n3
in the parameter string. The skipmer ksize is the "final" size that the k-mer ends up. --i.e. for ksize 3, the sequence ACTAG would produce two skip-mers for m2n3: ACA, CTG.example sketching commands:
manysketch:
singlesketch:
Skipmer References:
ref #549