Skip to content

ViralConsensus v0.0.5

Compare
Choose a tag to compare
@niemasd niemasd released this 06 Mar 05:13
· 6 commits to master since this release
  • Updated "Is this larger than the minimum frequency?" comparisons for stability
    • I used to do if(count / tot_depth > min_freq)
    • I changed it to if(count > tot_depth * min_freq)
    • count and tot_depth used to be double due to the division, but I changed them to unsigned integers
      • min_freq was a double, but now it's a long double
  • Changed all double to long double just in case floating point precision is an issue in edge cases
    • This is only relevant to comparisons against the minimum frequency to call bases/insertions
  • Changed most int/long integer types to int??_t and uint??_t types
    • This probably won't impact anything, but figured I would do it just in case for cross-platform stability