How to search the DB ==================== The most important interface for all searching is the central search field which is almost always visible. .. figure:: StartScreen.png The search field tries to do the most intuitive thing for substring and shift searches. But also it provides a simple syntax to compose more complex query combinations. If you enter a number value into the search field you find the compounds with a shift close to this number. If you enter a word or words the search performs a substring search. This substring search is quite stubborn as it can only find exact matches. In order to help the user entering a successful query the input field will complete user input by offering suitable words that occur in the data. This substring search, searches compound names, publication authors and titles, also InChI codes or data-document IDs. Detailed Search --------------- The other user interface element designed to assist with search is the search detail form. It is accessible through the symbol with the three horizontal bars next to the search field. .. figure:: SearchDetail.png If you already had a query in the search field, the input is not erased but decomposed into the search components and the form is filled with the values. In the other direction, if you have entered a set of parameters into the detailed search form, and you proceed to the searching, the parameters get concatenated into a single query string. Which reflects one of the design principles of the ACNMR data base that the query producing the results is always visible, and part of the URL. In this form you find a button to edit a query structure for substructure or similarity search. Combined Search --------------- For combining two or more conditions the "&&" operator may be used to do this. .. code:: -2.3 ... -1.2 && 10.0 ... 13.4 This combines two shift-range searches, such that it returns only compounds that have shifts in both ranges. You can combine shift searches like that: .. code:: 7 && 11 && 14 This will sort the results by the sum of the smallest distances. It will however, use all available shift values of the entry, also across nucleus and solvents. It is therefore possible to refine the results by adding more constraints: .. code:: -121.3 && 4 && nucleus=Si As an alternative syntax for shift sorting, it is possible to enter a list of shifts as comma separated list: .. code:: 7.0, 11.2, 14.0 Parameter Context Menu ---------------------- For refining the search by specifying additional conditions the parameter context menu is useful for exploring and narrowing the search. In the panel displaying the molecule and shifts, most parameters have a context menu, which is accessible by double click: .. figure:: Context.png This feature is intended to help you compile and discover queries. Queryparameters --------------- The parameter name are case insensitive and there are a few aliases for easier use. The special value "undefined" lets you search for fields that are not defined yet. `Example: doi=undefined `_ Mol and Literature __________________ author= Substring in literature author field. `Example: author=Marsmann `_ boilingpoint= Substring in boiling point field. `Example: boilingpoint=20 `_ CAS_RN= Substring in CAS_RN. `Example: CAS_RN=1206-46-8 `_ Comment= Substring in comment. `Example: comment=Si assignment `_ DOCTYPE= Substring in literature type like journal, book, article. `Example: DOCTYPE=article `_ DOI= Substring in literature DOI. `Example: DOI=http://dx.doi.org/10.1016/s0022-328x(00)82875-2 `_ Editor= Substring in literature editor. `Example: Editor=Rappoport `_ FORMULA= Substring in sum formular. `Example: FORMULA=C74 `_ InChI= Substring in International Chemical Indentifier. `Example: inchi=C74 `_ InChI<=valid inchi> Substring search. `Example: InChI<=InChI=1S/C5H12Si/c1-5-6(2,3)4/h5H,1H2,2-4H3 `_ InChI~=valid inchi> Similarity search. `Example: InChI~=InChI=1S/C5H12Si/c1-5-6(2,3)4/h5H,1H2,2-4H3 `_ InChIKey= Substring. `Example: InChIKey=GCSJLQSCSDMKTP-UHFFFAOYSA-N `_ Keyword Substring in literature key words. `Example: keyword=silanes `_ MSPeakListPeaks= Substring. `Example: MSPeakListPeaks=1531 `_ MSPeakListSourceID Substring. `Example: MSPeakListSourceID=EI MS `_ MeltingPoint= Substring. `Example: MeltingPoint=20 `_ Mol_ID= exact Mol id. `Example: mol_id=DZNQKXKZINSVPH-UHFFFAOYSA-N `_ Mol_Name= Substring in Compound Name. `Example: Mol_Name=cyclopentadienyl `_ Page= Substring literature page. `Example: Page=205 `_ REFNO= Substring in literature ref ID. `Example: REFNO=f92be0 `_ SMILES= Substring `Example: smiles=C([SiH3])=C `_ SMILES<= Substructure search. `Example: smiles<=C([SiH3])=C `_ SMILES~= Similarity Search. `Example:smiles~=C([SiH3])=C `_ Source= Substring in Source. eg. journal name. `Example: Source=Organometallics `_ Stereoinformation=true Marker for stereo Molecules. (Debugging help) `Example: Stereoinformation=true `_ Title Substring literature title. `Example: title=study `_ Volume= Substring literature volume. `Example: Volume=42 `_ YEAR= Order by distance to year published. `Example: year=2004 `_ date= Order by last edited close to date. Give as ISO date string. `Example: date=2007-04-05T14:30 `_ error= Substring error messages. `Example: Error=smiles `_ owner Substring last user editing. `Example: owner=me `_ NMR Parameters ______________ Shift= Sort by NMR Shift values close to number. `Example: shift=0.9 `_ Shift=... Shifts in range. `Example: shift=0.9...0.95 `_ Nucleus= Substring in NMR Nucleus field. `Example: nucleus=29Si `_ Method= Substring in Method. `Example: method=INDOR `_ J= Sort by Coubling constant closest to number. `Example: j=5.4 `_ J=... Coupling Constant in range. `Example: j=5.4...5.5 `_ jtype= Substring Coupling type. `Example: jtype= 2J(Si-P) `_ Temp= Substring in NMR Sample Temperature. `Example: temp=-20 `_ Design Principles ----------------- The single most important principle, the application tries hard not to break, is that any resource, that can be displayed, also has an URL that contains all the information required to display it again. Also the search field is used to display the query, that led to the results. This is for example the main reason the system uses SMARTS for substructure search. Because, SMARTS encodes a chemical structure in a short string that can be part of the URL, and thus can be shown in the search field.