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
Just wanted to let you know about the error thrown when running URSM with only one sample of bulk data. The "problem" is that np.loadtxt loads the data as a single dimensional array, and then SCexpr.shape[1] != BKexpr.shape[1]:
can not evaluate, because BKexpr.shape is one dimensional (no [1] element)
I fixed it by adding
if len(BKexpr.shape) == 1:
BKexpr.resize(1,len(BKexpr[:]))
after line 177 in scUnif.py.
Thanks for your work!
Celine
The text was updated successfully, but these errors were encountered:
Heyhey~
Just wanted to let you know about the error thrown when running URSM with only one sample of bulk data. The "problem" is that np.loadtxt loads the data as a single dimensional array, and then
SCexpr.shape[1] != BKexpr.shape[1]:
can not evaluate, because BKexpr.shape is one dimensional (no [1] element)
I fixed it by adding
after line 177 in scUnif.py.
Thanks for your work!
Celine
The text was updated successfully, but these errors were encountered: