Skip to content

Commit 2fa2c40

Browse files
committed
Disabled foldseek interface
1 parent f828312 commit 2fa2c40

File tree

3 files changed

+14
-15
lines changed

3 files changed

+14
-15
lines changed

backend/config.go

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ var defaultFileContent = []byte(`{
9696
*/
9797
// path to foldseek binary
9898
"foldseek" : "~foldseek",
99-
"foldseekinterface" : "~foldseek-interface",
99+
// "foldseekinterface" : "~foldseek-interface",
100100
"foldmason" : "~foldmason",
101101
"folddisco" : "~folddisco",
102102
"foldcomp" : "~foldcomp",
@@ -197,17 +197,17 @@ type ConfigColabFoldPaths struct {
197197
}
198198

199199
type ConfigPaths struct {
200-
Databases string `json:"databases"`
201-
Results string `json:"results"`
202-
Temporary string `json:"temporary"`
203-
Mmseqs string `json:"mmseqs"`
204-
Foldseek string `json:"foldseek"`
205-
FoldseekInterface string `json:"foldseekinterface"`
206-
FoldMason string `json:"foldmason"`
207-
FoldDisco string `json:"folddisco"`
208-
FoldComp string `json:"foldcomp"`
209-
Pdb100 string `json:"pdb100"`
210-
ColabFold *ConfigColabFoldPaths `json:"colabfold"`
200+
Databases string `json:"databases"`
201+
Results string `json:"results"`
202+
Temporary string `json:"temporary"`
203+
Mmseqs string `json:"mmseqs"`
204+
Foldseek string `json:"foldseek"`
205+
// FoldseekInterface string `json:"foldseekinterface"`
206+
FoldMason string `json:"foldmason"`
207+
FoldDisco string `json:"folddisco"`
208+
FoldComp string `json:"foldcomp"`
209+
Pdb100 string `json:"pdb100"`
210+
ColabFold *ConfigColabFoldPaths `json:"colabfold"`
211211
}
212212

213213
type ConfigRedis struct {
@@ -341,7 +341,7 @@ func ReadConfig(r io.Reader, relativeTo string) (ConfigRoot, error) {
341341
paths = append(
342342
paths,
343343
&config.Paths.Foldseek,
344-
&config.Paths.FoldseekInterface,
344+
// &config.Paths.FoldseekInterface,
345345
&config.Paths.FoldMason,
346346
&config.Paths.FoldDisco,
347347
&config.Paths.FoldComp,

backend/worker.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -834,7 +834,7 @@ mv -f -- "${BASE}/query.lookup_tmp" "${BASE}/query.lookup"
834834
dbpath = filepath.Clean(params.OverridePath)
835835
}
836836
parameters := []string{
837-
config.Paths.FoldseekInterface,
837+
config.Paths.Foldseek, //Interface,
838838
"easy-interfacesearch",
839839
inputFile,
840840
dbpath,

docker-compose/config.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
"temporary" : "/tmp",
1616
"mmseqs" : "/usr/local/bin/mmseqs",
1717
"foldseek" : "/usr/local/bin/foldseek",
18-
"foldseekinterface" : "/usr/local/bin/foldseek-interface",
1918
"foldmason" : "/usr/local/bin/foldmason",
2019
"folddisco" : "/usr/local/bin/folddisco",
2120
"foldcomp" : "/usr/local/bin/foldcomp"

0 commit comments

Comments
 (0)