Skip to content

Commit

Permalink
edit
Browse files Browse the repository at this point in the history
  • Loading branch information
timkucera committed Apr 15, 2024
1 parent 9d46e0a commit e16bf2c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions proteinshake/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,8 @@ def __init__(self) -> None:

class Collection:
"""
A set of Proteins as a result of a Database query. Provides methods to store and load to the filesystem.
A set of Proteins as a result of a Database query. Provides methods to store to the filesystem.
Stores files as tar bundles with sharded structures, a protein-level info file, metadata, and assets.
Loads files as an iterator with associated metadata and assets.
"""

def __init__(self) -> None:
Expand All @@ -119,7 +118,8 @@ def __init__(self) -> None:
class Dataset:
"""
Abstract class to define a Database query and a file path. Used to create and load a dataset.
Provides the means to download a precomputed Collection from a server or filesystem.
Provides the means to (down-)load a precomputed Collection from a server or filesystem.
Provides a ProteinIterator for the Task.
"""

def __init__(self) -> None:
Expand Down

0 comments on commit e16bf2c

Please sign in to comment.