We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ada950 commit 2affe90Copy full SHA for 2affe90
2 files changed
enformer_pytorch/data.py
@@ -186,7 +186,7 @@ def __init__(
186
bed_path = Path(bed_file)
187
assert bed_path.exists(), 'path to .bed file must exist'
188
189
- df = pl.read_csv(str(bed_path), sep = '\t', has_headers = False)
+ df = pl.read_csv(str(bed_path), sep = '\t', has_header = False)
190
df = filter_df_fn(df)
191
self.df = df
192
setup.py
@@ -4,7 +4,7 @@
4
name = 'enformer-pytorch',
5
packages = find_packages(exclude=[]),
6
include_package_data = True,
7
- version = '0.6.0',
+ version = '0.6.1',
8
license='MIT',
9
description = 'Enformer - Pytorch',
10
author = 'Phil Wang',
0 commit comments