Skip to content

Commit

Permalink
Merge pull request #16 from griffithlab/analysis
Browse files Browse the repository at this point in the history
Analysis
  • Loading branch information
ahwagner authored Apr 2, 2019
2 parents d57e57b + 1753292 commit a145fbf
Show file tree
Hide file tree
Showing 12 changed files with 938 additions and 43 deletions.
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -101,5 +101,6 @@ ENV/
# mypy
.mypy_cache/

# notebooks
*.ipynb
# data folders
civicpy/data/
analysis/data/
508 changes: 508 additions & 0 deletions analysis/Project GENIE.ipynb

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions civicpy/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
from .__version__ import __version__
from pathlib import Path

PROJECT_ROOT = Path(__file__).resolve().parent
DATA_ROOT = PROJECT_ROOT / 'data'

if not DATA_ROOT.exists():
DATA_ROOT.mkdir()


def version():
return __version__
2 changes: 1 addition & 1 deletion civicpy/__version__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__title__ = 'civicpy'
__description__ = 'CIViC variant knowledgebase analysis toolkit.'
__url__ = 'http://civicpy.org'
__version__ = '0.0.2'
__version__ = '0.0.3'
# __build__ = 0x021901
__author__ = 'Alex H. Wagner'
__author_email__ = '[email protected]'
Expand Down
Loading

0 comments on commit a145fbf

Please sign in to comment.