examples.ts 649 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright (c) 2017 MolQL contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author Alexander Rose <alexander.rose@weirdbyte.de>
  5. * @author David Sehnal <david.sehnal@gmail.com>
  6. *
  7. */
  8. export const rasmolSelectionsExamples = [{
  9. name: 'Residue 50 or 135',
  10. value: '50 or 135'
  11. }, {
  12. name: 'Atoms with no covalent bonds',
  13. value: 'bondcount = 0'
  14. }, {
  15. name: 'All 3-10 helices',
  16. value: 'substructure = "helix310"'
  17. }, {
  18. name: 'Metal atoms',
  19. value: 'metal'
  20. }, {
  21. name: 'Atoms invloved in aromatic bonds',
  22. value: 'isAromatic'
  23. }, {
  24. name: 'Pyrimidine residues',
  25. value: 'pyrimidine'
  26. }];