-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from OpenFreeEnergy/issue_33_vis_refactor
visualisation review/refactor
- Loading branch information
Showing
4 changed files
with
70 additions
and
43 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
from .color_schemes import OFE_COLORS | ||
from .visualization import draw_ligand_network | ||
from .widget import draw_network_widget |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
OFE_COLORS = ( | ||
(49 / 256, 57 / 256, 77 / 256), # Badass Blue | ||
(184 / 256, 87 / 256, 65 / 256), # Feeling spicy | ||
(0, 147 / 256, 132 / 256), # Feeling sick | ||
(217 / 256, 196 / 256, 177 / 256), # Beastly grey | ||
(217 / 256, 196 / 256, 177 / 256), # Sandy Sergio | ||
(238 / 256, 192 / 256, 68 / 256), # Gold | ||
(0 / 256, 47 / 256, 74 / 256), # otherBlue | ||
) |
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