File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
package/MDAnalysis/coordinates Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -358,6 +358,7 @@ def __init__(self,
358358 dt = 1 ,
359359 remarks = '' ,
360360 nsavc = 1 ,
361+ istart = 1 ,
361362 ** kwargs ):
362363 """Parameters
363364 ----------
@@ -380,6 +381,8 @@ def __init__(self,
380381 how many MD steps is a frame saved to the DCD). By default, this
381382 number is just set to one and this should be sufficient for almost
382383 all cases but if required, nsavc can be changed.
384+ istart : int (optional)
385+ starting frame number. CHARMM defaults to 1.
383386 **kwargs : dict
384387 General writer arguments
385388
@@ -400,7 +403,7 @@ def __init__(self,
400403 nsavc = nsavc ,
401404 delta = delta ,
402405 is_periodic = 1 ,
403- istart = 0 )
406+ istart = istart )
404407
405408 def write_next_timestep (self , ts ):
406409 """Write timestep object into trajectory.
You can’t perform that action at this time.
0 commit comments