Skip to content
Open
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 python/pod5/src/pod5/tools/pod5_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def parse_read_id_targets(ids: Path, output: Path) -> pl.LazyFrame:
pl.scan_csv(
ids,
has_header=False, # Any header will be filtered out by is_uuid
comment_char="#",
comment_prefix="#",
new_columns=[PL_READ_ID],
rechunk=False,
)
Expand Down
2 changes: 1 addition & 1 deletion python/pod5/src/pod5/tools/pod5_subset.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def parse_table_mapping(
summary_path,
columns=columns,
separator=get_separator(summary_path),
comment_char="#",
comment_prefix="#",
)
.lazy()
.with_columns(
Expand Down