/* * Copyright (c) 2017 MolQL contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose * @author David Sehnal * */ export const rasmolSelectionsExamples = [{ name: 'Residue 50 or 135', value: '50 or 135' }, { name: 'Atoms with no covalent bonds', value: 'bondcount = 0' }, { name: 'All 3-10 helices', value: 'substructure = "helix310"' }, { name: 'Metal atoms', value: 'metal' }, { name: 'Atoms invloved in aromatic bonds', value: 'isAromatic' }, { name: 'Pyrimidine residues', value: 'pyrimidine' }];