Skip to content

Commit

Permalink
Update utils_benchmark.py
Browse files Browse the repository at this point in the history
convert grts to numpy array
  • Loading branch information
PauBadiaM authored Jul 23, 2024
1 parent 31d9925 commit 4ebdc64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion decoupler/utils_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ def format_acts_grts(res, obs, groupby, use_pval):
grts = build_grts_mat(obs, exps, srcs)

# Match to same srcs between acts and grts
grts = match(srcs, grts.columns, grts.T).T
grts = match(srcs, grts.columns, grts.T.values).T

# Build msks tensor
msks, grpbys, grps = build_msks_tensor(obs, groupby)
Expand Down

0 comments on commit 4ebdc64

Please sign in to comment.