conformation.ts 500 B

12345678910111213141516171819
  1. /**
  2. * Copyright (c) 2017 molio contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author David Sehnal <david.sehnal@gmail.com>
  5. */
  6. import OrderedSet from '../mol-base/collections/ordered-set'
  7. interface Conformation {
  8. x: ArrayLike<number>,
  9. y: ArrayLike<number>,
  10. z: ArrayLike<number>,
  11. // Assign a secondary structure type to each residue.
  12. secondaryStructureType: ArrayLike<any>,
  13. secondaryStructureAtomOffsets: OrderedSet
  14. }
  15. export default Conformation