hifiasm icon indicating copy to clipboard operation
hifiasm copied to clipboard

How do I evaluate my genome?

Open ld9866 opened this issue 3 years ago • 6 comments

Hello, I have successfully completed the assembly, but now I want to evaluate the quality of the genome assembly. The software I want to use at present is Busco. But how do I convert this GFA format file for further analysis?
NA12878.asm.ec.bin NA12878.asm.hic.hap1.p_ctg.g NA12878.asm.hic.hap1.p_ctg.lowQ.be NA12878.asm.hic.hap1.p_ctg.noseq.gfa NA12878.asm.hic.hap2.p_ctg.g NA12878.asm.hic.hap2.p_ctg.lowQ.be NA12878.asm.hic.hap2.p_ctg.noseq.gfa NA12878.asm.hic.lk.bin NA12878.asm.hic.r_utg.gf NA12878.asm.hic.r_utg.lowQ.be NA12878.asm.hic.r_utg.noseq.gfa NA12878.asm.hic.tlb.bin NA12878.asm.ovlp.reverse.bin NA12878.asm.ovlp.source.bin

ld9866 avatar Jul 04 '21 12:07 ld9866

I used the following code, do not know if this is correct? awk '$1 ~/S/ {print ">"$2"\n"$3}' reads.gfa > reads.fasta

ld9866 avatar Jul 04 '21 13:07 ld9866

The line below is given in the README (see point "Getting started") of this repository to go from GFA to FASTA...

awk '/^S/{print ">"$2;print $3}' test.p_ctg.gfa > test.p_ctg.fa  # get primary contigs in FASTA

ptrebert avatar Jul 05 '21 08:07 ptrebert

Thank you very much for your reply. I want to ask one more question, how do I evaluate the effectiveness of our genome assembly? At present, I want to use Busco, but I find this software very difficult to use. Is there any other method or script for this?

ld9866 avatar Jul 05 '21 08:07 ld9866

Thank you very much for your reply. I want to ask one more question, how do I evaluate the effectiveness of our genome assembly? At present, I want to use Busco, but I find this software very difficult to use. Is there any other method or script for this?

ld9866 avatar Jul 05 '21 08:07 ld9866

Probably Hi-C is useful to evaluate completeness and misassemblies.

chhylp123 avatar Jul 05 '21 08:07 chhylp123

Mercury is also quite popular for assembly evaluation: https://github.com/marbl/merqury

ptrebert avatar Jul 05 '21 08:07 ptrebert