-
Notifications
You must be signed in to change notification settings - Fork 38
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
octopus appears to hang #4
Comments
PS. I just tried on octopus-0.1.1-alpha and it appears to still be there. |
Hi Jared! Many thanks for flagging this. I've found the problem! It's because the reference genome hg19 contains a mixture of lower & upper case bases while the reads are upper case only. Octopus was using the raw input, and considers mixed case versions of the same base as being distinct, causing high quality candidate variants at almost every position! I've added sequence capitalisation transforms to both reference and read sequences. They can be turned off with the command line options I'm also a bit concerned by the spurious message Best wishes, Dan |
Hi Dan, Good find! However, I would consider removing the new options —disable-reference-base-capitalisation and likewise for reads. I see no situation where you want to consider upper vs. lower case to be non-matching. How do you treat Ns in the reads? In Stampy I set the quality to 0 to effectively make N match anything. (And for the reference I set it to G. One has to do something…) Stuck in Copenhagen — flight delayed. Having fun implementing a bit more of the BWT algorithm (in the company of a Carlsberg..!) BW
|
Hi Gerton, Yes I think you're right, I actually just read the mixed-case is only intended to mark low complexity regions. I'll remove them from the next release. The raw cigar generator won't propose candidate base substitutions where either the reference or read base is N. Indels are allowed to contain Ns however. The local reassembler ignores any read k-mer with an N, creating a break in the k-mer path, but doesn't throw away the entire read. Reference sequence containing Ns is not allowed by the assembler as it requires a single contiguous path. Unfortunately this means the entire active region (~1000bp) won't be assembled. I'll expect a flurry of commits! Best, |
Hi guys, Thanks for the fast response. I can confirm this is resolved (takes 3 minutes on my AMI). I am still getting this Running on some full WGS data now - very excited to see the results! |
Hello! I have been trying to run octopus (Ubuntu 16.04) on a small test example. I sampled ~100kb either side of an interesting gene on each autosome from NA12878 to construct a small test bam. The tool appears to start calling variants but then stop, CPU usage remains at 100% (and there is plenty of memory available). Also ran into the same issue with 30X WGS bams.
The mini-bam (hg19) is available here: https://dl.dropboxusercontent.com/u/15887058/NA12878.bam
it has been stuck in this state for ~6 hours.
The text was updated successfully, but these errors were encountered: