1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| :{residue numlist} [:1-10] [:1,3,5] [:1-3,5,7-9] :{residue namelist} [:LYS] [:ARG,ALA,GLY] @{atom numlist} [@12,17] [@54-85] [@12,54-85,90] @{atom namelist} [@CA] [@CA,C,O,N,H] @%{atom typelist} [@%CT] [@%N*,N3] [:AS=]匹配ASP和ASH [@H=]匹配所有以H开头的原子 [@C= & !@CA,C]匹配非a碳和羰基碳 [(:1-3@CA | :5-7@CB)]残基1-3中的a碳和残基5-7中的b碳 [:CYS,ARG & !(:1-10 | @CA,CB)] 残基CYS和ARG,并且不包含残基1-10 和CA、CB [:* & !@H=] or [!@H=] 所有重原子 [:5<@4.5]残基5 4.5A之内的所有原子 [(:1-55 <:3.0) & :WAT] 残基1-55 3A范围内的所有水分子 :{residue numlist|namelist}@{atom numlist|namelist|typelist} [:1-10@CA] === [:1-10 & @CA] [:LYS@H=] === [:LYS & @H=]
|