Entering edit mode
11 days ago
andrea
•
0
I have recently generated an assembly using Hifiasm. I did it by running the following command:
hifiasm -o HG002.asm --ont -t32 HG002-ont.fq.gz
I extracted chromosome 1 from my assembly (Query) and proceeded to extract chromosome 1 from the (Reference) The goal was to compare there two and see what are the differences and what are the similarities. This is the script that I used:
#!/bin/bash
module add mummer/4.0.0rc1
dnadiff Reference_chr1.fa chr1_asm.fa
This is part of the report, and I need assistance in interpreting some of the results. Specifically, I’d like to understand:
- Breakpoints: What exactly are they, and why is the count identical in both cases?
- Insertions: In my query and the reference, are these insertions novel?
- SNPs :Why is the number of SNPs the same in both my query and the reference? In the attached image, the second column represents the Reference, and the third column is the Query.