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
# config_files/colorschemes/default.json | |
... | |
"synchronized_panes": { "fg": "red", "bg": "gray0", "attrs": [] } | |
... |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
# PS1 customization | |
NC='\001\033[0m\002' | |
RED='\001\033[00;31m\002' | |
GREEN='\001\033[00;32m\002' | |
YELLOW='\001\033[00;33m\002' | |
BLUE='\001\033[00;34m\002' | |
PURPLE='\001\033[00;35m\002' | |
CYAN='\001\033[00;36m\002' |
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
from bokeh.plotting import figure, output_notebook, show | |
from bokeh.models import ColumnDataSource, HoverTool, CrosshairTool, WheelZoomTool | |
from bokeh.models import ColorBar, ResetTool, PanTool, LinearColorMapper | |
import bokeh.palettes as palettes | |
import matplotlib as mpl | |
output_notebook() | |
def get_structures(mol_df): |