I am assembling fungal genomes from 150 bp PE Illumina short reads. I've noted that it is recommended to use --isolate for "high-coverage multi-cell/isolate data"; however, when specified and compared the assembly quality decreased based on standard measurements (N50, contig number, largest contig). Furthermore, I was unable to recover a known gene cluster on one contig using --isolate, but it was recovered on a single contig when I reran without it.
with --isolate (contigs > 1kb):
N50-1000BP: 3991
L50-1000BP: 2432
L50%-1000BP: 0.19828781084386465
LARGEST_CONTIG: 76404
CONTIGS-1000BP: 12265
ASSEMBLY_LEN-1000BP: 37223681
GC-1000BP: 0.47354643098571875
without --isolate (contigs > 1kb):
N50-1000BP: 8551
L50-1000BP: 899
L50%-1000BP: 0.09553666312433581
LARGEST_CONTIG: 202404
CONTIGS-1000BP: 9410
ASSEMBLY_LEN-1000BP: 40587032
GC-1000BP: 0.4733252936175136
I therefore have evidence from a biological standpoint (the gene cluster recovery) and the assembly statistics (which I understand could be falsely better) that --isolate was detrimental to my assembly quality. Why is it recommended then?
I am assembling fungal genomes from 150 bp PE Illumina short reads. I've noted that it is recommended to use
--isolatefor "high-coverage multi-cell/isolate data"; however, when specified and compared the assembly quality decreased based on standard measurements (N50, contig number, largest contig). Furthermore, I was unable to recover a known gene cluster on one contig using--isolate, but it was recovered on a single contig when I reran without it.with
--isolate(contigs > 1kb):without
--isolate(contigs > 1kb):I therefore have evidence from a biological standpoint (the gene cluster recovery) and the assembly statistics (which I understand could be falsely better) that
--isolatewas detrimental to my assembly quality. Why is it recommended then?