Skip to content

Commit

Permalink
Update v1.41
Browse files Browse the repository at this point in the history
  • Loading branch information
sami-chaaban committed Aug 11, 2023
1 parent f7117e3 commit 2ee92c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion starparser/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import os

__version__ = '1.39'
__version__ = '1.41'
_ROOT = os.path.abspath(os.path.dirname(__file__))
2 changes: 1 addition & 1 deletion starparser/decisiontree.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

"""
Expand Down

0 comments on commit 2ee92c8

Please sign in to comment.