From 2ee92c8359e5b2eecae3b0c07c4579517998155f Mon Sep 17 00:00:00 2001 From: Sami Chaaban <36083637+sami-chaaban@users.noreply.github.com> Date: Fri, 11 Aug 2023 18:19:06 +0100 Subject: [PATCH] Update v1.41 --- starparser/__init__.py | 2 +- starparser/decisiontree.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/starparser/__init__.py b/starparser/__init__.py index 5803d55..3316d21 100644 --- a/starparser/__init__.py +++ b/starparser/__init__.py @@ -1,4 +1,4 @@ import os -__version__ = '1.39' +__version__ = '1.41' _ROOT = os.path.abspath(os.path.dirname(__file__)) \ No newline at end of file diff --git a/starparser/decisiontree.py b/starparser/decisiontree.py index b3fbf47..7bb1276 100644 --- a/starparser/decisiontree.py +++ b/starparser/decisiontree.py @@ -496,7 +496,7 @@ def decide(): otherparticles, f2metadata = fileparser.getparticles(file2) matchedparticles = allparticles[allparticles["_rlnMicrographName"].isin(otherparticles["_rlnMicrographName"])] print("\n>> Kept " + str(len(set(matchedparticles["_rlnMicrographName"].tolist()))) + " micrographs that matched the second file (out of " + str(len(set(allparticles["_rlnMicrographName"].tolist()))) + ").\n") - fileparser.writestar(matchedparticles, metadata, "output.star", relegateflag) + fileparser.writestar(matchedparticles, metadata, params["parser_outname"], relegateflag) sys.exit() """