Skip to content

Commit

Permalink
address #26
Browse files Browse the repository at this point in the history
  • Loading branch information
lucidrains committed May 14, 2023
1 parent e3aeba1 commit 3cbcd94
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ loss.backward()
## Data
You can use the `GenomicIntervalDataset` to easily fetch sequences of any length from a `.bed` file, with greater context length dynamically computed if specified
You can use the `GenomicIntervalDataset` to easily fetch sequences of any length from a <a href="https://genome.ucsc.edu/FAQ/FAQformat.html#format1">`.bed`</a> file, with greater context length dynamically computed if specified
```python
import torch
Expand Down
2 changes: 1 addition & 1 deletion enformer_pytorch/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def __init__(
bed_path = Path(bed_file)
assert bed_path.exists(), 'path to .bed file must exist'

df = pl.read_csv(str(bed_path), sep = '\t', has_header = False)
df = pl.read_csv(str(bed_path), separator = '\t', has_header = False)
df = filter_df_fn(df)
self.df = df

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
name = 'enformer-pytorch',
packages = find_packages(exclude=[]),
include_package_data = True,
version = '0.7.3',
version = '0.7.4',
license='MIT',
description = 'Enformer - Pytorch',
author = 'Phil Wang',
Expand Down

0 comments on commit 3cbcd94

Please sign in to comment.