Skip to content

Commit

Permalink
Split io.py into smaller files under new io/
Browse files Browse the repository at this point in the history
This change helps modularize the functions within io.py and io_support/. With the wildcard imports in io/__init__.py, existing imports do not have to be modified.

Test files updated to reflect the new way of organizing things. Note that there is no test_metadata.py or test_print.py but the contents already have full coverage based on the Codecov report.
  • Loading branch information
victorlin committed May 25, 2022
1 parent 5916362 commit 0e98435
Show file tree
Hide file tree
Showing 13 changed files with 676 additions and 679 deletions.
369 changes: 0 additions & 369 deletions augur/io.py

This file was deleted.

8 changes: 8 additions & 0 deletions augur/io/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
"""Interfaces for reading and writing data also known as input/output (I/O)
"""

from .file import *
from .metadata import *
from .print import *
from .sequences import *
from .vcf import *
Loading

0 comments on commit 0e98435

Please sign in to comment.