Skip to main content
POST
/
submit
/
analysis
Submit Analysis
curl --request POST \
  --url https://98i2es6mi4.execute-api.us-west-2.amazonaws.com/prod/submit/analysis \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "downsample_frames": 123,
  "distance_masks": [
    "<string>"
  ],
  "rmsd_masks": [
    [
      "<string>"
    ]
  ],
  "rmsf_masks": [
    "<string>"
  ],
  "hbond_angle": 123,
  "hbond_distance": 123
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Body

application/json
downsample_frames
integer | null

Interval for frame downsampling; e.g., 10 means keep every 10th frame

distance_masks
string[] | null

List of atom selection masks for distance calculations

rmsd_masks
string[][] | null

List of pairs of atom selection masks for RMSD calculation

rmsf_masks
string[] | null

List of atom selection masks for RMSF calculation

hbond_angle
integer | null

Hydrogen bond angle cutoff in degrees

hbond_distance
integer | null

Hydrogen bond distance cutoff in Angstroms

Response

Successful Response