-
Notifications
You must be signed in to change notification settings - Fork 11
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
Output HyperLogLog #60
Comments
If you want to know how many unique k-mers overlapped, then you'd compute
|
that helps thanks, I have also a question to be sure
#Path Size (est.) 2824048: the number of k-mer's in my reference If I run:
Is the last ouput : 0.00054983 |
Hi, --sizes causes the number emitted to be an approximate number of k-mers, while the default is jaccard similarity (fraction of shared k-mers). If you want to get rid of the randomness from the sketch, you can |
Hi,
I have a question about the output from HLL, when I use Dashing with HyperLogLog i.e.:
./dashing hll -k15 -p2 -S24 read.fastq reference.fasta
The output from HLL is then:
Estimated number of unique exact matches: 2925637.000000
Which kind of matches counts HLL?, I thought the k-mer matches between the Inputs (read and reference).
If the HLL counts the K-mer matches, it shouldn't be 2925637, because my read length is 1628 bp and the reference about 3000000 bp.
My goal is to count the k-mer matches between read and reference. Are the counted matches in HLL between k-mer's or other kind of matches?
Best,
Ahmad
The text was updated successfully, but these errors were encountered: