yjx1217 / simuG

simuG: a general-purpose genome simulator
MIT License
83 stars 11 forks source link

how to simulate genomes with multiple types of variants #11

Closed zhoudreames closed 1 year ago

zhoudreames commented 1 year ago

I want to simulate genomes with SNP, Indel, and SV simultaneously, how to do it, or is there any pipeline to do it ? thanks~

yjx1217 commented 1 year ago

Hi zhoudreames,

You can first simulate SNPs and INDELs (which can be simulated simultaneously), and then use the output genome to simulate SV afterwards. It was noting that during the INDEL simulation will change the genome coordinates (although not much) of the simulated genome relative to the original one. So keeps in mind when if you want to compare the absolute coordinate of SVs relative to the original input genome.

Best, Jia-Xing

zhoudreames commented 1 year ago

Thanks~