-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
decrease scanning frequency of codeql
- Loading branch information
1 parent
a66b572
commit 7e87bc6
Showing
3 changed files
with
13 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,15 @@ | ||
"""Top-level package for intensity-normalization.""" | ||
|
||
import logging | ||
|
||
__title__ = "intensity-normalization" | ||
__description__ = "normalize the intensities of various MR image modalities" | ||
__url__ = "https://github.com/jcreinhold/intensity-normalization" | ||
__author__ = """Jacob Reinhold""" | ||
__email__ = "[email protected]" | ||
__version__ = "2.1.2" | ||
__license__ = "Apache-2.0" | ||
__copyright__ = "Copyright 2021 Jacob Reinhold" | ||
|
||
PEAK = { | ||
"last": ["t1", "other", "last"], | ||
|
@@ -11,3 +18,5 @@ | |
} | ||
VALID_PEAKS = {m for modalities in PEAK.values() for m in modalities} | ||
VALID_MODALITIES = VALID_PEAKS - {"last", "largest", "first"} | ||
|
||
logging.getLogger(__name__).addHandler(logging.NullHandler()) |