-
Notifications
You must be signed in to change notification settings - Fork 23
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
No -I option #40
Comments
Sorry, multi-part indexing is not supported yet. |
Hi @cjain7 Does this mean that it's not possible to map to genomes larger than 4G while getting accurate mapQs? For minimap2 this would be the case in the absence of the -I flag. Thanks! |
I saw this change was added post the last v2.0.3 release version so the condo-installed versions allow using the -I option. I do see slight differences in alignments when increasing -I on genomes w/>4gb genome size. I wanted to confirm if it is safe to use this option assuming no saved index is used or was it removed because it was not working correctly in v2.0.3 as well? |
Hi Sergey, Increasing the My guess is that minimap2 has |
The issue is the default -I is only 4gb so even a diploid human genome is too big and we'd want to increase -I (in fact we do when mapping for all our T2T analysis to both haplotypes: https://github.com/arangrhie/T2T-Polish/blob/master/winnowmap/map.sh). There are also much larger genomes (see marbl/verkko#252) which is what made me start looking into this. In these cases of large references it sounds like the -I option would be important to set to be larger than the genome size so it'd be nice to keep it available in future releases since it is being used. |
Sorry to jump in, but as a heavy user of giant genomes (30 Gbp and more), I think it is absolutely indispensable to have the |
Understood, thank you! |
When running winnowmap, the -I option is not recognized.
e.g. after generating the repetitive_k15.txt with meryl:
winnowmap -W repetitive_k15.txt -a -x map-pb -Y -L --eqx --cs -I 32G ref.fa.gz reads.fastq.gz | samtools view -hb | samtools sort -@8 > alignment_sorted.bam
Yields the following error:
[ERROR] unknown option in "-I"
The -I option is needed for a multi-part index.
Thanks.
The text was updated successfully, but these errors were encountered: