Skip to content

Commit

Permalink
fix: overflowing qual value in vcf
Browse files Browse the repository at this point in the history
  • Loading branch information
nuggetoriniku committed Feb 22, 2023
1 parent 2cfa13e commit 765c8e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cljam/io/vcf/writer.clj
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@
[x]
(when x
(if (zero? (mod x 1))
(str (int x))
(str (format "%.0f" x))
(str x))))

(defn- ^String stringify-data-line
Expand Down

0 comments on commit 765c8e6

Please sign in to comment.