From 0757f097ba82f9de49fe6c35edd35556e735e5ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Kalfon?= Date: Thu, 6 Apr 2023 16:28:17 +0200 Subject: [PATCH] Update __init__.py --- celligner/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/celligner/__init__.py b/celligner/__init__.py index 6ddde53..17fe2f6 100644 --- a/celligner/__init__.py +++ b/celligner/__init__.py @@ -285,6 +285,8 @@ def fit(self, X_pression=None, annotations=None, _rerun=True): # mean center the dataframe # TODO? a bit different from R's version as it was using an approximate fast centering method + print('BE CAREFUL! I found a bug here. it can mean-center multiple time if using addToFit()') + print('please feel free to propose an update') self.fit_input = self.fit_input.sub(self.fit_input.mean(0), 1) # clustering: doing SNN on the reduced data print("clustering...")