Skip to content

Commit

Permalink
flake8 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cameronmartino committed Jun 6, 2024
1 parent b95d3e5 commit f36726b
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions gemelli/tempted.py
Original file line number Diff line number Diff line change
Expand Up @@ -482,22 +482,22 @@ def tempted(table: biom.Table,
# run TEMPTED
if svd_centralized:
tempted_res = tempted_helper(tensor.individual_id_tables_centralized,
tensor.individual_id_state_orders,
tensor.feature_order,
n_components=n_components,
smooth=smooth,
resolution=resolution,
maxiter=max_iterations,
epsilon=epsilon)
tensor.individual_id_state_orders,
tensor.feature_order,
n_components=n_components,
smooth=smooth,
resolution=resolution,
maxiter=max_iterations,
epsilon=epsilon)
else:
tempted_res = tempted_helper(tensor.individual_id_tables,
tensor.individual_id_state_orders,
tensor.feature_order,
n_components=n_components,
smooth=smooth,
resolution=resolution,
maxiter=max_iterations,
epsilon=epsilon)
tensor.individual_id_state_orders,
tensor.feature_order,
n_components=n_components,
smooth=smooth,
resolution=resolution,
maxiter=max_iterations,
epsilon=epsilon)
(individual_loadings,
feature_loadings,
state_loadings,
Expand Down

0 comments on commit f36726b

Please sign in to comment.