We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 062021b commit e5aff23Copy full SHA for e5aff23
1 file changed
CodeEntropy/main_mcc.py
@@ -36,9 +36,9 @@ def main(arg_dict):
36
number_frames = len(u.trajectory)
37
elif end == -1:
38
end = len(u.trajectory)
39
- number_frames = math.floor((end - start)/step)
+ number_frames = math.floor((end - start)/step) + 1
40
else:
41
42
print(number_frames)
43
44
# Create pandas data frame for results
0 commit comments