From 26cd0eba4948f44ad604bb04124ba828de44e890 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Richard=20Tj=C3=B6rnhammar?= Date: Tue, 31 Aug 2021 21:32:42 +0200 Subject: [PATCH] Q --- setup.py | 2 +- src/impetuous/fit.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 77f86de..044067d 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md", "r") as fh: setuptools.setup( name = "impetuous-gfa", - version = "0.70.0", + version = "0.70.1", author = "Richard Tjörnhammar", author_email = "richard.tjornhammar@gmail.com", description = "Impetuous Quantification, a Statistical Learning library for Humans : Alignments, Clustering, Enrichments and Group Analysis", diff --git a/src/impetuous/fit.py b/src/impetuous/fit.py index 931ac0a..304da56 100644 --- a/src/impetuous/fit.py +++ b/src/impetuous/fit.py @@ -213,7 +213,7 @@ def HighDimensionalAlignment ( P , Q ) : if 'panda' in str(type(P)).lower() : P = P.values if 'panda' in str(type(Q)).lower() : - P = P.values + Q = Q.values N , DIM = np.shape( P ) M , DIM = np.shape( Q ) P0 = P.copy() -- GitLab