Skip to content

Commit

Permalink
docstrings added
Browse files Browse the repository at this point in the history
  • Loading branch information
Dainius Kirsnauskas committed Apr 3, 2024
1 parent 81419bb commit bf3bc90
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions data_collection/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
"""
Package for data collection purposes provides both collection and refactoring functionality.
Data from LOVD, ClinVar and GnomAd databases can be downloaded using this package. GnomAd and
ClinVar are limited with EYS gene, but it is possible to download data for any gene in LOVD.
All necessary functionality can be imported directly from data_collection without
specifying the module.
data collection pipeline example is established for project's specific usage.
"""

# CONSTANTS IMPORT
# TODO: specify imports of constants
from .constants import *
Expand Down
2 changes: 1 addition & 1 deletion data_collection/collection.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Module providing a functionality to collect data from various sources."""
""" Module providing a functionality to collect data from various sources """

import glob
import logging
Expand Down

0 comments on commit bf3bc90

Please sign in to comment.