Commit 40b7efe 1 parent d404311 commit 40b7efe Copy full SHA for 40b7efe
File tree 2 files changed +15
-0
lines changed
pgscatalog.calclib/src/pgscatalog/calclib
pgscatalog.matchlib/src/pgscatalog/matchlib
2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change
1
+ import logging
2
+
3
+ from .polygenicscore import PolygenicScore
4
+
5
+ log_fmt = "%(name)s: %(asctime)s %(levelname)-8s %(message)s"
6
+ logging .basicConfig (format = log_fmt , datefmt = "%Y-%m-%d %H:%M:%S" )
7
+ logger = logging .getLogger (__name__ )
8
+
9
+ __all__ = ["PolygenicScore" ]
Original file line number Diff line number Diff line change
1
+ import logging
2
+
1
3
from .variantframe import VariantFrame
2
4
from .scoringfileframe import ScoringFileFrame , match_variants
3
5
from .matchresult import MatchResult , MatchResults
4
6
from .plinkscorefiles import PlinkScoreFiles
5
7
8
+ log_fmt = "%(name)s: %(asctime)s %(levelname)-8s %(message)s"
9
+ logging .basicConfig (format = log_fmt , datefmt = "%Y-%m-%d %H:%M:%S" )
10
+ logger = logging .getLogger (__name__ )
11
+
6
12
__all__ = [
7
13
"VariantFrame" ,
8
14
"ScoringFileFrame" ,
You can’t perform that action at this time.
0 commit comments