Skip to content

v2.2.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 06 Oct 21:39
· 1 commit to master since this release

Earlier versions of guidescan enumerate --format sam ... assumed that the kmer chromosome and position can be ascertained directly from the incoming kmer file. While this is reasonable, a lot of times this information is not available beforehand, and blank/dummy values for chromosome/position are filled in only to satisfy guidescan enumerate.

In these cases, the output of guidescan enumerate --format csv ... is correct since it obtains the match positions directly from the offtargets (including at distance 0), but the output of guidescan enumerate --format sam ... is incorrect w.r.t. the reference name and reference position fields in the SAM file (because that information was unavailable to begin with).

This release fixes this issue by getting that information directly from the off-targets at distance 0.

Note that this means that multiple matches at distance 0 will end up producing multiple lines in the SAM file, with identical off-target hex information. This is already happening in the CSV file generation, so this also makes the behavior consistent.