We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c25fc8 commit c9c66b1Copy full SHA for c9c66b1
1 file changed
backend/worker.go
@@ -1725,14 +1725,17 @@ func worker(jobsystem JobSystem, config ConfigRoot) {
1725
for _, db := range databases {
1726
if db.GpuConfig != nil && db.GpuConfig.UseServer {
1727
go func(p Params) {
1728
- executable := config.Paths.Mmseqs
1729
- if config.App == AppFoldseek {
1730
- executable = config.Paths.Foldseek
1731
- }
1732
dbpath := filepath.Join(config.Paths.Databases, p.Path)
1733
if p.OverridePath != "" {
1734
dbpath = filepath.Clean(p.OverridePath)
1735
}
+
+ executable := config.Paths.Mmseqs
+ if config.App == AppFoldseek {
+ executable = config.Paths.Foldseek
1736
+ dbpath = dbpath + "_ss"
1737
+ }
1738
1739
parameters := []string{
1740
executable,
1741
"gpuserver",
0 commit comments