Skip to content

ViralConsensus v0.0.4

Compare
Choose a tag to compare
@niemasd niemasd released this 30 Sep 14:57
· 18 commits to master since this release
1ebe158
  • Open the reference genome of an input CRAM file properly
    • Originally, CRAM files were always pulling a remote copy of the reference genome (#6)
    • To fix it, I used the htslib cram_load_reference() function, which solved the immediate problem (0b99fca)
    • However, it seems like this is an internal htslib function, and the proper fix is to use the hts_set_opt() function instead
    • This shouldn't change anything from the user's perspective: it just makes it easier to compile ViralConsensus