You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I was processing a dense matrix, which have about 50000 rows, with topdom, it failed. Here is the error message:
Error in seq.default(from = 1 + (n_bins * i), to = n_bins * n_bins, by = 1 + :
'to' must be a finite number
Calls: TopDom -> seq -> seq.default
In addition: Warning message:
In n_bins * n_bins : NAs produced by integer overflow
Execution halted
It seems that the type of n_bins is integer, and max number of interger in R is 2*10^9. So, what should I do in this situation?
Looking forward to your helpful reply.
Best,
Qiang
The text was updated successfully, but these errors were encountered:
Hey @musiccccc,
I posted an edited version of TopDom to overcome the issue you mentioned, that I also faced in my high-resolution Hi-C matrices.
You can find it here: https://github.com/JSegueni/TopDom.
Hopefully, this can help you !
Best,
Julie.
Delta-43
added a commit
to Delta-43/TopDom
that referenced
this issue
May 11, 2023
Dear Prof. HenrikBengtsson,
When I was processing a dense matrix, which have about 50000 rows, with topdom, it failed. Here is the error message:
Error in seq.default(from = 1 + (n_bins * i), to = n_bins * n_bins, by = 1 + :
'to' must be a finite number
Calls: TopDom -> seq -> seq.default
In addition: Warning message:
In n_bins * n_bins : NAs produced by integer overflow
Execution halted
It seems that the type of n_bins is integer, and max number of interger in R is 2*10^9. So, what should I do in this situation?
Looking forward to your helpful reply.
Best,
Qiang
The text was updated successfully, but these errors were encountered: