File size: 1,483 Bytes
98bde72 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | {
"commands": [
{
"name": "generate_moppit",
"argv": [
"/opt/moppit/bin/python",
"-m",
"peppa.native_worker",
"--mode",
"moppit",
"--root",
"/models/moppit",
"--work",
"/results/moppit"
],
"cwd": "/models/moppit",
"cost": {
"tool_calls": 1,
"gpu_minutes": 120
},
"description": "Generate a canonical linear peptide batch with pinned moPPIt.",
"timeout": 7200,
"argument_schema": {
"type": "object",
"properties": {
"length": {
"type": "integer",
"enum": [
12,
18,
24
]
},
"count": {
"type": "integer",
"minimum": 1,
"maximum": 96
},
"objectives": {
"type": "array",
"items": {
"type": "string"
}
},
"weights": {
"type": "array",
"items": {
"type": "number",
"minimum": 0
}
},
"steps": {
"type": "integer",
"minimum": 1,
"maximum": 1000
},
"native_motif_indices": {
"type": "string"
}
},
"required": [
"length",
"count"
],
"additionalProperties": false
}
}
]
} |