-
Notifications
You must be signed in to change notification settings - Fork 19
Description
In many whole genome de novo sequencing project, the scaffolds and contigs are not assembled into pseudomolecules. As a result, it's very difficult to determine exact ratio between subject genome and reference genome from a synteny map.
According to your description in README.rst, quota_align.py can calculate the genome coverages from a specified ratio, and the coverage will be two low if a wrong ratio is specified. So my question is, is it possible or appropriate to determine the exact ratio between two genomes?
Here are two real examples
Example 1:
sp1: the species we studied (unknown)
Cca: Coffea canephora (no WGD event after γ)
Vvi: Vitis vinifera (no WGD event after γ)
Sly: Solanum lycopersicum (genome triplicated after γ)
sp1 vs Cca
| --quota | genome X coverage (sp1) | genome Y coverage (Cca) |
|---|---|---|
| 1:1 | 55.6% | 95.6% |
| 2:1 | 85.4% | 97.0% |
| 3:1 | 95.6% | 96.9% |
| 4:1 | 95.7% | 96.9% |
| 6:1 | 95.7% | 96.9% |
sp1 vs Vvi
| --quota | genome X coverage (sp1) | genome Y coverage (Vvi) |
|---|---|---|
| 1:1 | 58.7% | 93.3% |
| 2:1 | 84.4% | 94.9% |
| 3:1 | 93.3% | 94.5% |
| 4:1 | 93.5% | 94.2% |
| 6:1 | 93.5% | 94.2% |
sp1 vs Sly
| --quota | genome X coverage (sp1) | genome Y coverage (Vvi) |
|---|---|---|
| 1:3 | 72.5% | 95.5% |
| 2:3 | 92.6% | 99.5% |
| 3:3 | 99.6% | 99.6% |
Question:
Can I infer that sp1 genome underwent a whole genome triplication after γ?
Example 2:
sp2: the species we studied (unknown)
Cca: Coffea canephora (no WGD event after γ)
sp2 vs Cca
| --quota | genome X coverage (sp2) | genome Y coverage (Cca) |
|---|---|---|
| 1:1 | 37.5% | 95.0% |
| 2:1 | 60.5% | 97.1% |
| 3:1 | 74.3% | 95.9% |
| 4:1 | 83.4% | 95.9% |
| 6:1 | 89.6% | 95.6% |
| 8:1 | 90.3% | 95.5% |
Question:
Can I infer that sp2 genome underwent a round of whole genome triplication and a round of whole genome duplication (3 * 2 = 6) after γ?
I examined this method in Arabidopsis vs grape, Arabidopsis vs Brassica rapa and poplar vs peach. It seemed to work well.
Thanks for your attention!
Xiaofei Zeng