-
Notifications
You must be signed in to change notification settings - Fork 7
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
Cause of read depth of 0.000x after polishing #13
Comments
Hi Juan, Something has clearly gone wrong in during assembly or polishing: the input file to Racon seems to have a total size of 0 bp. I'm not sure where the issue is, but an assembly with a mean depth of 2x is bound to have some problems! If all you're interested in is the mitochondrial genome, I would suggest trying to assemble just the 277 reads you identified as mitochondrial. This should be very fast and you'll know that it worked well if you get a circular contig of about the right size. Ryan |
That's a tough one, and I don't know why you're getting the discrepancy. It will probably take some experimentation and detective work! Some miscellaneous thoughts:
|
Thanks. Do you know if the polished assembly graph can't be polished a second round?
and I got an error: Minimap2 found: /home/juaguila/miniconda3/envs/pomoxis/bin/minimap2 (v2.22-r1101) Loading graph Ju760.Jul28.polish.min500.gfa Initial polishing round Error: could not find /tmp/tmpabf382_o/utg000001c_reads.fastq Could you tell why this is happening? Thanks; |
It seems that Minipolish is having issues getting reads from its temporary file. Maybe you don't have read/write permissions for If that doesn't help, can you upload the reads here or email them to me and I'll see if I can reproduce the problem? |
Hi,
I am trying to assemble the genome of a worm, and I was hoping that minipolish would detect the mitochondrial genome and output it in the gfa file.
I have sequencing one of my worm species a lot, and I couldn't get much data, furthermore, the HPC system has a GPU card that is not compatible for dorado, so I am using dorado in CPU mode. After all the troubles, I was able to get about 3 Gb of data, but many reads with low quality, and many short, I filtered out reads with quality less than 20 and shorter than 1000 bp. My dataset is 1.3 Gb, with max read length of 113kb and average of 8.5k.
I followed the instructions:
minimap2 -x ava-ont -t 12 Ju760.Jul22.fastq Ju760.Jul22.fastq | gzip -1 > Ju760.Jul22.paf.gz ``miniasm -f Ju760.Jul22.fastq ./Ju760.Jul22.paf.gz > Ju760.Jul22.gfa
which worked fine,but then, when I tried running minipolish
minipolish -t 12 Ju760.Jul22.fastq Ju760.Jul22.gfa > Ju760.Jul22.polish.gfa
I got a lot of empty segments removed,
Racon round 2, started with this info
Running Racon on round_2:
reads: Ju760.Jul22.fastq (156,105 reads)
input: /tmp/tmpbvbg0wzi/round_2.fasta (0 bp)
alignments: /tmp/tmpbvbg0wzi/round_2.paf (0 alignments)
output: /tmp/tmpbvbg0wzi/round_2_polished.fasta (0 bp)
And the output was:
Aligning reads:
reads: Ju760.Jul22.fastq (156,105 reads)
contigs: /tmp/tmpbvbg0wzi/depths.fasta (0 bp)
alignments: /tmp/tmpbvbg0wzi/depths.paf (0 alignments)
mean depth: 0.000x
Could you explain how could I get a mean depth of 0.000x, I would expect to have at least 2x, from my data.
Is there any parameter I can change during the process to get some gfa, at least the mitochondrial genome?
For instance, I mapped the reads to the c elegans mitogenome, and I got 277 sequences, making about 1.3 MB.
Should I be able to recover the mitochondrial genome in the gfa?
Thanks;
Juan Pablo
The text was updated successfully, but these errors were encountered: