diff --git a/setup.py b/setup.py index 77f86de9ed09a97bb352f3fcff51323ddcc855e7..044067d55689a9d82c72110ffecb41d58ccb1fab 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 931ac0aef74f8e6925969d5f5ad90953741ee5ba..304da5620b7680297c45901c0644ab4bb9b42733 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()