List of targets matching given NCBI accession, returns empty array if there are no matches
Example: /search/target/ncbi/DS984767.1List of all structures of given type (xray|em|nmr). For all other stype will return full list of structures
Example: /structures/nmrList of all publication for given target id.
Example: /publications/target/IDP90283Starts BLAST job
Payload:
{
"sequence": "proteinsequence",
"seqheader": ">HEADER"
}
Returns JSON with jobid:
{
message: "BLAST search submitted",
time: date,
jobid: jobid
}
Starts BLAST job against combined database of CSBID and SSGCID targets
Starts BLAST job against database of sequences from PDB
Returs status of blast job as : "running", "failed", "finished"
Returns json with blast results
{ "message": "Results for job 2023-06-13-100531",
"time": "2023-06-13",
"sequence": "MMKLKEMVE...RSRR",
"results": [
{
"idp": "IDP91521",
"evalue": "4.37e-166",
"qstart": 1,
"qend": 240,
"sstart": 1,
"send": 240,
"pident": 100,
"slen": 1990
},....
]
}