Load an AMBER .binpos file from disk.
The .binpos format is a cross-platform binary trajectory format produced by AMBER software. It stores only the atomic coordinates, and does not store any unit cell informations. Its use is discouraged.
| Parameters: | filename : str 
 top : {str, Trajectory, Topology} 
 stride : int, default=None 
 atom_indices : array_like, optional 
 frame : int, optional 
 | 
|---|---|
| Returns: | trajectory : md.Trajectory 
 | 
See also
Examples
>>> import mdtraj as md                                        
>>> traj = md.load_binpos('output.binpos', top='topology.pdb') 
>>> print traj                                                 
<mdtraj.Trajectory with 500 frames, 423 atoms at 0x110740a90>  
>>> traj2 = md.load_binpos('output.dcd', stride=2, top='topology.pdb') 
>>> print traj2                                                      
<mdtraj.Trajectory with 250 frames, 423 atoms at 0x11136e410>