Skip to content
Snippets Groups Projects
Commit 3c1e9107 authored by Pavel KORSHUNOV's avatar Pavel KORSHUNOV
Browse files

Correctly determine uses_dense_probe_file when scores only

parent 7439f94f
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -289,7 +289,7 @@ class FileListBioDatabase(ZTBioDatabase):
scores = True
for group in self.groups(protocol, add_world=False):
probes = probes and os.path.exists(self._get_list_file(group, type='for_probes', protocol=protocol))
scores = probes and os.path.exists(self._get_list_file(group, type='for_scores', protocol=protocol))
scores = scores and os.path.exists(self._get_list_file(group, type='for_scores', protocol=protocol))
# decide, which score files are available
if probes and not scores:
return True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment