Shamir-Lab / Recycler

This is the codebase for Recycler, described in our manuscript: https://academic.oup.com/bioinformatics/article/33/4/475/2623362, by Roye Rozov, Aya Brown Kav, David Bogumil, Naama Shterzer, Eran Halperin, Itzhak Mizrahi, and Ron Shamir
BSD 3-Clause "New" or "Revised" License
58 stars 7 forks source link

not an issue: small suggestion for recycler.py #39

Open greytear opened 4 years ago

greytear commented 4 years ago

I thought it would be useful (for debugging purposes, for example) to add date and time to the recycler.py script. Thus, i added to my local recycler.py, on line 194

print(str(datetime.now().strftime('%Y-%m-%d %H:%M:%S')) + " --> " + str(len(COMP.nodes())) + " nodes remain in component")

with the obvious

from datetime import datetime

Hope this can be useful