Create PoseView Job
Creates a new PoseView job passing json data in body and returns json data about the location of the results.
-
URL
https://proteins.plus/api/poseview_rest
-
Method:
POST
-
URL Params
None
-
Data Params
Required:
poseview=[hash] - Contains the following parameters: pdbCode=[string] - Select a structure form the Protein Data Bank (PDB) via its PDB code. ligand=[string] - Set a ligand with respect to specified pdbCode or "".
-
Success Response:
- Code: 200
Content:{ status_code: 200, location: "", message: "Job already exists" }
OR
- Code: 202
Content:{ status_code: 202, message: "The job will be created in the specified location", location: "" }
OR
- Code: 202
Content:{ status_code: 202, message: "Job exists and is still in 'processing' state", location: "" }
- Code: 200
-
Error Response:
- Code: 400 BAD REQUEST
Content:{ status_code: 400, error: "Bad Request", message: "Parameter values must be strings" }
OR
- Code: 400 BAD REQUEST
Content:{ status_code: 400, error: "Bad Request", message: "Invalid number of parameters or incorrect parameter name" }
OR
- Code: 400 BAD REQUEST
Content:{ status_code: 400, error: "Bad Request", message: "Invalid pdbCode" }
OR
- Code: 400 BAD REQUEST
Content:{ status_code: 400, error: "Bad Request", message: "Invalid ligand" }
OR
- Code: 400 BAD REQUEST
Content:{ status_code: 400, error: "Bad Request", message: "Job saving error" }
OR
- Code: 400 BAD REQUEST
Content:{ status_code: 400, error: "Bad Request", message: "Job loading error" }
OR
- Code: 429 TOO MANY REQUESTS
Content:{ status_code: 429, error: "Too Many Requests", message: "Throttle limit reached. Retry later." }
- Code: 400 BAD REQUEST
-
Sample Data:
{ "poseview": { "pdbCode":"1kzk", "ligand":"JE2_A_701"} }
Sample Call (curl):
curl -d '{"poseview": {"pdbCode":"1kzk","ligand":"JE2_A_701"}}' -H "Accept: application/json" -H "Content-Type: application/json" -X POST https://proteins.plus/api/poseview_rest
Show PoseView Job
Returns json data about a single PoseView job.
-
URL
https://proteins.plus/api/poseview_rest/:id
-
Method:
GET
-
URL Params
Required:
id=[string]
-
Data Params
None
-
Success Response:
- Code: 200
Content:{ status_code: 200, result_png_picture: "", result_pdf_picture: "", result_svg_picture: "" }
OR
- Code: 202
Content:{ status_code: 202, message: "Job exists and is still in 'processing' state", location: "" }
- Code: 200
-
Error Response:
- Code: 400 BAD REQUEST
Content:{ status_code: 400, error: "Bad Request", message: "Job loading error" }
OR
- Code: 404 NOT FOUND
Content:{ status_code: 404, error: "Not Found", message: "Invalid ID" }
OR
- Code: 429 TOO MANY REQUESTS
Content:{ status_code: 429, error: "Too Many Requests", message: "Throttle limit reached. Retry later." }
- Code: 400 BAD REQUEST
-
Sample Call (curl):
curl https://proteins.plus/api/poseview_rest/ixenp5kLNHohrRbj56fbt4dd
-
Output:
result_png_picture - 2D-diagram of protein-ligand interactions (PNG-file) result_pdf_picture - 2D-diagram of protein-ligand interactions (PDF-file) result_svg_picture - 2D-diagram of protein-ligand interactions (SVG-file)