-
Notifications
You must be signed in to change notification settings - Fork 16
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
Support for larger genomes #239
Comments
Hi @fmobegi . Thanks for reporting this issue. We'll look into trying to get this fixed. It sounds like you found a work around! |
I just encountered this issue with the wheat genome as well. |
The purpose of samtools index is to create an index file that can be used with other programs to increase efficency. There are two options for this output GEMmaker currently creates a 4 Potential Solutions:
|
I implimented option 1 from above in my local version by changing the file
|
Is your feature request related to a problem? Please describe
Am working on in-planta infection RNAseq assays for the Lentil-Ascochyta pathosystem. The pathogen side of things works perfectly with the pipeline as currently constituted (albeit with a few hiccups on the cleanup of large intermediate files as mentioned in a separate issue report). However, the analysis cannot go past samtools indexing when using the Lentil genome as a reference.
Describe the solution you'd like
Am not entirely sure how to handle this (perhaps a try-catch-except), but, if the tool could do some kind of chromosome length check and send the BAM files to appropriate
samtools
indexing and generate either the default *.BAI or *.CSI for larger genomes.Describe alternatives you've considered
I have modified the process "samtools_index" as below to add the -c flag thus enabling csi index for this run.
The text was updated successfully, but these errors were encountered: