-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix uneven columns and rows * Update plot_cpdb.py * ah my stuipd regex pattern was the reason! * Update settings.py * Update settings.py * ok it was missing a colour * Update plot_cpdb_chord.py * Update plot_cpdb_chord.py * bump version * update tutorials. i guess everything is the same execpt this time the mnp's are kept because of the new regex pattern
- Loading branch information
Showing
6 changed files
with
103 additions
and
79 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,16 +1,20 @@ | ||
#!/usr/bin/env python | ||
# import matplotlib.pyplot as plt | ||
import pkg_resources | ||
|
||
# from itertools import cycle | ||
|
||
try: | ||
__version__ = pkg_resources.get_distribution("ktplotspy").version | ||
except: # pragma: no cover | ||
__version__ = "dev" | ||
|
||
DEFAULT_SEP = ">@<" | ||
DEFAULT_SPEC_PAT = "/|:|\\?|\\*|\\+|\\|\\(|\\)|\\/" | ||
DEFAULT_SPEC_PAT = "/|:|\\?|\\*|\\+|\\(|\\)|\\/|\\[|\\]" | ||
DEFAULT_CELLSIGN_ALPHA = 0.5 | ||
DEFAULT_COLUMNS = ["interaction_group", "celltype_group"] | ||
DEFAULT_V5_COL_START = 13 | ||
DEFAULT_COL_START = 11 | ||
DEFAULT_CLASS_COL = 12 | ||
DEFAULT_CPDB_SEP = "|" | ||
# DEFAULT_PAL = cycle(plt.cm.tab20.colors) |
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