Skip to content

Commit

Permalink
Fix #14
Browse files Browse the repository at this point in the history
  • Loading branch information
showteeth committed Nov 29, 2023
1 parent c37c0cb commit 9324901
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
## Minor changes
* Export all themes to simplify customization.
* Optimized the gene and transcript group.
* Fix all zero tracks.

-------------

Expand Down
2 changes: 2 additions & 0 deletions R/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ CeilingNumber <- function(x, digits = 2) {
sci.part <- as.numeric(x.split[2])
valid.digits <- digits - 1
x.ceiling <- round(num.part + 5 * 10^(-valid.digits - 1), valid.digits) * 10^(sci.part)
} else {
x.ceiling <- 0
}
# final number
x.final <- x.ceiling * flag
Expand Down

0 comments on commit 9324901

Please sign in to comment.