Skip to content

Commit

Permalink
Fix separator in gene identifiers file
Browse files Browse the repository at this point in the history
  • Loading branch information
javfg committed Nov 19, 2024
1 parent 8eab117 commit a57732a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ontoform"
version = "24.1.0-alpha.4"
version = "24.1.0-alpha.5"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
Expand Down
2 changes: 1 addition & 1 deletion src/ontoform/transformers/target.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def transform(self, src: BinaryIO, dst: BinaryIO, output_format: Format) -> None

class GeneIdentifiersTransformer:
def transform(self, src: BinaryIO, dst: BinaryIO, output_format: Format) -> None:
df = pl.read_csv(src, separator='\t')
df = pl.read_csv(src)
write_format(df, dst, output_format)


Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a57732a

Please sign in to comment.