Skip to content

Commit

Permalink
fixed few errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rbpisupati committed May 13, 2021
1 parent f16e98a commit cc55e1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions snpmatch/core/infer.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def __init__(self,
num_markers,
chromosome_size,
avg_depth = 1.5,
delta_het_parents = 0.99,
fraction_homo_parents = 0.99,
avg_sites_segregating = 0.01,
base_error = 0.0001,
recomb_rate = 3.3,
Expand All @@ -29,7 +29,7 @@ def __init__(self,
self.params['num_markers'] = num_markers
self.params['avg_depth'] = avg_depth
### fraction of sites parental genomes are heterozygous
self.params['delta_het_parents'] = delta_het_parents
self.params['delta_het_parents'] = fraction_homo_parents
### fraction of sites which are segregating between parents
self.params['avg_sites_segregating'] = avg_sites_segregating
### sequencing error rate
Expand Down

0 comments on commit cc55e1b

Please sign in to comment.