-
Notifications
You must be signed in to change notification settings - Fork 13
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
How to get haplotype-specific reads? #52
Comments
Hi @DayTimeMouse, One fundamental question is, how confident you are with your hap1.fa and hap2.fa. Anyways, you could try Small explanation from the help message:
You could bin the reads based on the hap1 and hap2 mers found in each fastq sequence. Alternate option is to use trio-binning implemented in Canu, but this might fit better if you are actually using hapmers inferred from the parental genomes as it normalizes based on the kmers found in the dbs.
|
But I do not have real parental genomes, I used hifiasm(HiFi + ONT +HiC) to get hap1.fa and hap2.fa. |
Then using |
Many thanks! |
Hi, I have another question. How to get haplotype-specific HiC reads(paired-end)? Using haplotype-specific kmers? Best regards. |
Hi,
Thanks for developing this awesome tools. I'd like to get haplotype-specific HiFi reads via haplotype-specific kmers.
I run script to get haplotype-specific kmers, meryl version is 1.3:
meryl count k=21 hap1.fa output hap1.meryl
meryl count k=21 hap2.fa output hap2.meryl
meryl difference hap1.meryl hap2.meryl output hap1.only.meryl
meryl difference hap2.meryl hap1.meryl output hap2.only.meryl
meryl intersect hap1.meryl hap2.meryl output hap1_hap2_intersect.meryl
get read-meryl:
meryl count k=21 hifi_reads.fq.gz output hifi.meryl
I want to partition HiFi reads(each read) into two haplotypes. Now, I do not know how to do next? meryl can do this? Or, do you have some ideas for this?
Thanks in advance.
The text was updated successfully, but these errors were encountered: