We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62b4bb7 commit 142ad0cCopy full SHA for 142ad0c
2 files changed
CodeEntropy/config/arg_config_manager.py
@@ -28,7 +28,8 @@
28
"help": ("Stop analysing the trajectory at this frame index. This is "
29
"the frame index of the last frame to be included, so for example"
30
"if start=0 and end=500 there would be 501 frames analysed. The "
31
- "default -1 will include everything up to the last frame."),
+ "default -1 will include everything up to the last frame."
32
+ ),
33
"default": -1,
34
},
35
"step": {
CodeEntropy/main_mcc.py
@@ -134,7 +134,7 @@ def main():
134
number_frames = len(u.trajectory)
135
elif end == -1:
136
end = len(u.trajectory)
137
- number_frames = math.floor((end - start) / step)
+ number_frames = math.floor((end - start) / step)
138
else:
139
end = end + 1
140
number_frames = math.floor((end - start) / step)
0 commit comments