Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

io: Add open_file and write_sequences to public API #1114

Merged
merged 2 commits into from
Dec 14, 2022
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
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## __NEXT__

### Features

* io: Add `open_file` and `write_sequences` to the Python Pubic API. [#1114][] (@joverlee521)

[#1114]: https://github.com/nextstrain/augur/pull/1114

## 19.0.0 (13 December 2022)

Expand Down
3 changes: 2 additions & 1 deletion augur/io/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
"""
# Functions and variables exposed here are part of Augur's public Python API.
# To use functions internally, import directly from the submodule.
from .file import open_file
from .metadata import read_metadata
from .sequences import read_sequences
from .sequences import read_sequences, write_sequences