Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bbconf/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.14.5"
__version__ = "0.14.6"
3 changes: 2 additions & 1 deletion bbconf/modules/bedfiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -1477,7 +1477,8 @@ def reindex_qdrant(self, batch: int = 100, purge: bool = False) -> None:
except FileNotFoundError:
bed_region_set_obj = bb_client.load_bed(record.id)
except RuntimeError:
bed_region_set_obj = bb_client.load_bed(record.id)
_LOGGER.warning(f"Unable to open file: {record.id}")
continue
except Exception:
_LOGGER.warning(
f"File not found or corrupted. Skipping.. {record.id}"
Expand Down
Loading