File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 2828 "help" : ("Stop analysing the trajectory at this frame index. This is "
2929 "the frame index of the last frame to be included, so for example"
3030 "if start=0 and end=500 there would be 501 frames analysed. The "
31- "default -1 will include everything up to the last frame." ),
31+ "default -1 will include everything up to the last frame."
32+ ),
3233 "default" : - 1 ,
3334 },
3435 "step" : {
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ def main():
134134 number_frames = len (u .trajectory )
135135 elif end == - 1 :
136136 end = len (u .trajectory )
137- number_frames = math .floor ((end - start ) / step )
137+ number_frames = math .floor ((end - start ) / step )
138138 else :
139139 end = end + 1
140140 number_frames = math .floor ((end - start ) / step )
You can’t perform that action at this time.
0 commit comments