ResearchIT / IGV-ScanFold

IGV + RNA folding tools
4 stars 2 forks source link

Add predicted runtime or progress bar to Scanfold window #19

Closed njbooher closed 3 years ago

rjandr commented 3 years ago

We can add an estimated runtime based on the number of windows. Right now I'm calculating roughly 2 windows per second. So we can just print that simple estimation for now (not sure if that completely closes the issue).

print(f'Estimated runtime = {round((number_windows*2)/60), 2)} minutes')

rjandr commented 3 years ago

Just added a simple runtime estimation for now.