-
Notifications
You must be signed in to change notification settings - Fork 77
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
Bowtie hangs when running on very large genomes #124
Comments
I am not able to get I am investigating why
|
I am also wondering about the status of the fix to this problem, as we have multiple large genomes that we need to use - the same scale as wheat (i.e. rye, barley, oat). Any updates on either the original problem (hanging during mapping on the indexed genome) or the second problem (failure to build the index)? thank you! |
I am still actively looking into this one, but have yet to figure out the underlying cause of this bug. As a temporary work around you can build those indexes with bowtie2 and use them for alignment in bowtie. |
This work around would only address the secondary issue that you encountered with indexing, but not the original problem of bowtie hanging during the mapping/aligning stage, right? I don't think the problem originally reported was with indexing. |
I am quite confident it is an index issue. |
We have finally tracked down and pushed a fix for this bug to the bug_fixes branch.
|
Thank you so much! I really appreciate this. We'll test it out and let you know if we encounter any issues. |
This change is now available in v1.3.1. Thank you for providing sample files and for helping test. |
I downloaded the "bread wheat" genome from here: https://ftp.ncbi.nlm.nih.gov/genomes/all/GCA/002/220/415/GCA_002220415.3_Triticum_4.0/GCA_002220415.3_Triticum_4.0_genomic.fna.gz
Then I ran bowtie-build:
bowtie-build GCA_002220415.3_Triticum_4.0_genomic.fna WHEAT_JHU4_genome
Then I created a query input file (raw) called reads.txt, with a single sequence in it. For example:
AAAAAAAAAAAAAAAAAAAA
Then I ran bowtie:
bowtie -x WHEAT_JHU4_genome -r reads.txt
It hangs. If I split the genome to two pieces, it works well for each piece. So I think this problem is because of the size of the genome.
I am attaching the verbose output. It shows where bowtie hangs:
bowtie_verbose.txt
Thanks
The text was updated successfully, but these errors were encountered: