Volume 1 Chapter 2 Search Fields and Associated Keywords
In QUEST3D a numeric test is composed using the NUMERIC sub-menu, accessed from the SEARCH menu. The sub-menu is shown below and it can be seen that 40 search keywords are available for the composition of numeric tests.
Ex. Suppose we wish to search for all steroids (class 51).
Please select either a sub-keyword (eg. *YEAR) or logical operator (eg. .EQ.) (Select TO-SEARCH to return to the SEARCH menu.)
Please select a logical operator (such as .EQ. or RANGE) (Select TO-SEARCH to return to the SEARCH menu.)
Please type value :
Please select either a sub-keyword (eg. *YEAR) or logical operator (eg. .EQ.) (Select TO-SEARCH to return to the SEARCH menu.)
At this point the instruction document would contain:
T1 *CLASS .EQ. 51
Basic QUEST Procedure
In QUEST the above test would be composed by simply typing:
T1 *CLAS .EQ. 51
The syntax of a numeric test is:
Tn *KEYWORD .LO. VALUE
where .LO. is one of the logical operators:
Specification of a range of values is also permitted:
In QUEST3D a text test is composed using the TEXT sub-menu, accessed from the SEARCH menu. The sub-menu is shown on below and it can be seen that 20 search keywords are available for the composition of text tests.
Ex.1 Suppose we wish to search for all entries corresponding to the author M.Nardelli.
Please select a TEXT item (Select TO-SEARCH to return to SEARCH menu.)
Enter TEXT for test 1 ==> (enclose in apostrophes (`) if trailing blanks are required) (Press <RETURN> to CANCEL this test)
At this point the instruction document would contain:
T1 *AUTHOR M.Nardelli
Ex.2 Suppose we wish to search for all entries corresponding to space group Pc.
Please select a TEXT item (Select TO-SEARCH to return to SEARCH menu.)
At this point the instruction document would contain:
T2 *SPACEGROUP `Pc `
Note that in this example we must use trailing blanks, otherwise hits would be registered not only for the space group Pc but also for Pcab, Pcnb, Pcm21, etc.
Basic QUEST Procedure
In QUEST the above tests would be composed by simply typing:
T1 *AUTH M.Nardelli
T2 *SPAC `Pc `
The syntax of a text test is:
Tn *KEYWORD string
or
Tn *KEYWORD `string'
Graphics QUEST3D Procedure
In QUEST3D chemical formula tests are composed using the SEARCH menu shown below.
Ex.1 Find all entries for which the sum formula contains 6-8 osmium atoms.
Do you wish to specify the formula of a single residue (rather than that summed over all residues) ? [Y]
Please type an element or group symbol, followed by the number of occurrences required : (e.g. P 3 ; 7A .Lt. 6 ; TR .GE. 4 ; OS 8-10) (Press <RETURN> if you don't want this test)
At this point the instruction document would contain:
T1 *SUMFORM OS 6-8
Ex.2 Find all entries for which a single residue contains 6-8 osmium atoms.
Do you wish to specify the formula of a single residue (rather than that summed over all residues) ? [Y]
Please type an element or group symbol, followed by the number of occurrences required : (e.g. P 3 ; 7A .Lt. 6 ; TR .GE. 4 ; OS 8-10) (Press <RETURN> if you don't want this test)
Are any other elements allowed to be present ? [Y]
At this point the instruction document would contain:
T2 *RESIDUE & OS 6-8
Basic QUEST Procedure
In QUEST the above tests would be composed by simply typing:
T1 *SUMF Os 6-8
T2 *RESI & Os 6-8