Skip to content

Commit

Permalink
Update genomap.py
Browse files Browse the repository at this point in the history
  • Loading branch information
xinglab-ai authored May 27, 2024
1 parent 5bb1462 commit d09395a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion genomap/genomap.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def construct_genomap(data,rowNum,colNum,epsilon=0,num_iter=1000):
px = np.asmatrix(projM)

# Formation of genomaps from the projected data
for i in range(0, numCell-1):
for i in range(0, numCell):
dx = px[i, :]
fullVec = np.zeros((1,rowNum*colNum))
fullVec[:dx.shape[0],:dx.shape[1]] = dx
Expand Down

0 comments on commit d09395a

Please sign in to comment.