Skip to content

Commit 2b63dea

Browse files
authored
Merge pull request #423 from illumination-k/modify_standrize_function
modify _Clustergram._scale function
2 parents 48334ac + 0928112 commit 2b63dea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dash_bio/component_factory/_clustergram.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ def __init__(
340340
if log_transform:
341341
self._data = np.log2(self._data)
342342
if standardize in ['row', 'column']:
343-
self._data = self._scale(self._data, standardize)
343+
self._data = self._scale(standardize)
344344

345345
def figure(
346346
self,

0 commit comments

Comments
 (0)