Skip to content
Open
Show file tree
Hide file tree
Changes from 13 commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
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
17 changes: 15 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,22 @@ Change Log

* New module ``sheet_utils`` for loading workbooks.

* class ``WorkbookManager`` for loading raw data
* Important things of interest:

* class ``ItemManager`` for loading item data
* Class ``ItemManager`` for loading Item-style data
from any ``.xlsx``, ``.csv`` or ``.tsv`` files.

* Function ``load_items`` that does the same as ``ItemManager.load``.

* Various low-level implementation classes such as:

* Classes ``XlsxManager``, ``CsvManager`` and ``TsvManager`` for loading raw data
from ``.xlsx``, ``.csv``, and ``.tsv`` files, respectively.

* Classes ``ItemXlsxManager``, ``ItemCsvManager``, and ``ItemTsvManager`` for loading Item-style data
from ``.xlsx``, ``.csv``, and ``.tsv`` files, respectively.

* Contains a fix for a bug in ``ff_utils.get_schema_names`` (`C4-1086 <https://hms-dbmi.atlassian.net/browse/C4-1086>`_).


7.8.0
Expand Down
Loading