Skip to content

Commit f7a0e1e

Browse files
add colabfold mini to gateway (#727)
1 parent 6da3447 commit f7a0e1e

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"class": "CommandLineTool",
3+
"name": "colabfold-miniV2 gateway 12GB memory",
4+
"description": "Protein folding prediction using Colabfold (mini settings)",
5+
"author": "",
6+
"baseCommand": ["/bin/bash", "-c"],
7+
"arguments": [
8+
"colabfold_batch --templates --max-msa 32:64 --num-recycle 1 /inputs/sequence /outputs;"
9+
],
10+
"dockerPull": "public.ecr.aws/p7l9w5o7/colabfold:latest",
11+
"gpuBool": true,
12+
"networkBool": true,
13+
"memoryGB": 12,
14+
"inputs": {
15+
"sequence": {
16+
"type": "File",
17+
"item": "",
18+
"glob": ["*.fasta"]
19+
}
20+
},
21+
"outputs": {
22+
"best_folded_protein": {
23+
"type": "File",
24+
"item": "",
25+
"glob": ["*rank_1*.pdb"]
26+
},
27+
"all_folded_proteins": {
28+
"type": "Array",
29+
"item": "File",
30+
"glob": ["*rank*.pdb"]
31+
}
32+
}
33+
}

0 commit comments

Comments
 (0)