Skip to content

Commit

Permalink
divide copy number with extinction probability
Browse files Browse the repository at this point in the history
  • Loading branch information
maxemil committed Jun 26, 2019
1 parent 1efd3bc commit 136b78e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/undated.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1051,7 +1051,7 @@ string exODT_model::counts_string_undated(scalar_type samples)
<< branch_counts["Ls"][e]/samples << "\t"
<< branch_counts["Os"][e]/samples << "\t"
//<< branch_counts["singleton"][e]/samples << "\t"
<< branch_counts["copies"][e]/samples << "\n";
<< branch_counts["copies"][e]/samples/(1-uE[e]) << "\n";
else
out<< "S_terminal_branch\t"<< named_branch.str() << "\t"
<< branch_counts["Ds"][e]/samples << "\t"
Expand Down

0 comments on commit 136b78e

Please sign in to comment.