Skip to content

Commit

Permalink
Debug build fix (missed during switch to khash)
Browse files Browse the repository at this point in the history
  • Loading branch information
jblachly committed Aug 22, 2020
1 parent 2ee4abe commit 706eaf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/swiftover/vcf.d
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ void liftVCF(
alias keysort = (x,y) => contigSort(x, y);
foreach(k; sort!keysort(cf.qContigSizes.byKey.array)) {
if (!fa.hasSeq(k)) {
debug hts_log_debug(__FUNCTION__, format("❌ %s present in chainfile but not genome.", kv.key));
debug hts_log_debug(__FUNCTION__, format("❌ %s present in chainfile but not genome.", k));
missingInGenome++;
}
else if (fa.seqLen(k) != cf.qContigSizes[k])
Expand Down

0 comments on commit 706eaf1

Please sign in to comment.