ZINC26: Difference between revisions

From DISI
Jump to navigation Jump to search
No edit summary
No edit summary
Line 7: Line 7:


== API ==  
== API ==  
* zinc26.docking.org/docs describes how to use. Here is a short tutorial to get you started.  
* zinc26.docking.org/docs describes how to use. Here is a short tutorial to get you started using curl
=== SW search API ===
1. Check available databases/categories/catalogs
curl "https://zinc26.docking.org/sw/maps"
Response:
{"Bioactive":
    {"inVitro":
      ["00chembl","mapsAADAC","mapsAADAT","mapsAAK1","mapsABAT"]
    }
}
 
 
2. Submit a search
curl "https://zinc26.docking.org/sw/search?database=Bioact&category=inVivo&catalog=dball&smiles=CCCCC&ced=4&ged=2&terminalUp=4&terminalDown=4&ringUp=2&ringDown=4&linkerUp=2&linkerDown=2&mutationMajor=4&mutationMinor=4&hybridisation=4&substitution=4&atomAlignment=true&multiSource=false"
  Required parameters:
    - database — e.g. Purchasable, Bioact
    - category — e.g. inVivo (from /sw/maps)
    - catalog — e.g. dball (from /sw/maps)
    - smiles — your query molecule in SMILES notation
  Optional distance parameters (all default to 0 or 4):
    - ced — chemical edit distance (default 4)
    - ged — graph edit distance (default 4)
    - terminalUp, terminalDown, ringUp, ringDown, linkerUp, linkerDown
    - mutationMajor, mutationMinor, hybridisation, substitution
 
Response:
    {"task_id": "abc-123", "status": "PENDING"}
3. Check for results
curl "https://zinc26.docking.org/sw/result?task_id=abc-123"
Poll this until status is SUCCESS (or FAILURE). While running it may return PROGRESS with partial results:
  {
      "task_id": "abc-123",
      "status": "SUCCESS",
      "results": [...]
    }
 
 
=== Arthor search API ===
 
=== Batch Job search API ===
 





Revision as of 21:53, 12 August 2026

Introduction

ZINC26 is a search tool for purchasable chemical space. It uses Smallworld and Arthor technology from NextMove Software to allow searching billions of molecules in seconds. There is a batch interface and an interactive one.

The new database is organized around a set of principles.

API

  • zinc26.docking.org/docs describes how to use. Here is a short tutorial to get you started using curl

SW search API

1. Check available databases/categories/catalogs

curl "https://zinc26.docking.org/sw/maps"

Response:

{"Bioactive":
   {"inVitro":
     ["00chembl","mapsAADAC","mapsAADAT","mapsAAK1","mapsABAT"]
   }
}


2. Submit a search

curl "https://zinc26.docking.org/sw/search?database=Bioact&category=inVivo&catalog=dball&smiles=CCCCC&ced=4&ged=2&terminalUp=4&terminalDown=4&ringUp=2&ringDown=4&linkerUp=2&linkerDown=2&mutationMajor=4&mutationMinor=4&hybridisation=4&substitution=4&atomAlignment=true&multiSource=false"
 Required parameters:
   - database — e.g. Purchasable, Bioact
   - category — e.g. inVivo (from /sw/maps)
   - catalog — e.g. dball (from /sw/maps)
   - smiles — your query molecule in SMILES notation
 Optional distance parameters (all default to 0 or 4):
   - ced — chemical edit distance (default 4)
   - ged — graph edit distance (default 4)
   - terminalUp, terminalDown, ringUp, ringDown, linkerUp, linkerDown
   - mutationMajor, mutationMinor, hybridisation, substitution
Response:
   {"task_id": "abc-123", "status": "PENDING"}

3. Check for results

curl "https://zinc26.docking.org/sw/result?task_id=abc-123"

Poll this until status is SUCCESS (or FAILURE). While running it may return PROGRESS with partial results:
  {
     "task_id": "abc-123",
     "status": "SUCCESS",
     "results": [...]
   }


Arthor search API

Batch Job search API

Coming soon

  • 3d database builder
  • additional data

Tutorial in how to use datawarrior

  • the columns in datawarrior are as follows.
  • we are still working on adding a net_charge column.
  • we suggest you proceed as follows.