Skip to content
Snippets Groups Projects
Select Git revision
  • 4c094fabb86063a5cab00bbeff9fa1cee7f78ba4
  • master default protected
  • ci-bullseye
  • wip/bigtop-3.0.0
  • bio3
  • feature/certificates2
6 results

deploy.tf

Blame
  • examples.ts 648 B
    /*
     * Copyright (c) 2017 MolQL contributors, licensed under MIT, See LICENSE file for more info.
     *
     * @author Alexander Rose <alexander.rose@weirdbyte.de>
     * @author David Sehnal <david.sehnal@gmail.com>
     *
     */
    
    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'
    }];