Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • svdetection/popsim
1 result
Show changes
Commits on Source (1)
......@@ -495,7 +495,7 @@ def set_variant_graph(sv_sim, reference):
for chrom, variants in sv_sim.duplications.items():
for variant in variants:
sv = Variant(chrom, variant['start'], variant['end'],
variant['name'], variant['allele_freq'], "INV")
variant['name'], variant['allele_freq'], "DUP")
variant_set[chrom].append(sv)
# split by chromosomes
......