Skip to content

Commit

Permalink
Update process_multiSample.py
Browse files Browse the repository at this point in the history
  • Loading branch information
yiwang12 authored Nov 14, 2024
1 parent 85be1dd commit b645386
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mNSF/process_multiSample.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def get_listX_chunked(list_X_,list_nchunk=None):
for ksample in range(0,nsample):
X=list_X_[ksample]
nchunk = list_nchunk[ksample]
nspot = X.shape[1]
nspot = X.shape[0]
nspot_perChunk = int(nspot/nchunk)
for kchunk in range(0,nchunk):
st = (kchunk)*nspot_perChunk
Expand Down

0 comments on commit b645386

Please sign in to comment.