dapogon / cellcoal

CellCoal: coalescent simulation of single-cell NGS genotypes
13 stars 3 forks source link

birthRate/deathRate typo #5

Open chifman opened 2 years ago

chifman commented 2 years ago

on line 8611 there is a typo it should be if (birthRate<deathRate) then print the error

if (deathRate < birthRate) { fprintf (stderr, "\n!!! PARAMETER ERROR: Bad death rate (%f), it should be smaller than the birth rate (%f)\n\n", deathRate, birthRate); PrintUsage(stderr); }

dapogon commented 2 years ago

indeed, thx!