-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
36 lines (34 loc) · 1.39 KB
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from ipywidgets import widgets
from IPython.display import display
import warnings
warnings.filterwarnings("ignore")
box = widgets.FloatSlider(min=5, max=10, step=0.5, value=6.0, description='Box size')
solvent = widgets.Dropdown(options=['W', 'EOL', 'OD'], value='W', description='Solvent')
nlip = widgets.IntSlider(min=10, max=100, value=50, description='# of lipids')
lipid = widgets.Dropdown(options=['CPC',
'DLPC',
'DOPC',
'DPGS',
'DPPC',
'DPPG',
'DPSM',
'DTPC',
'DTPE',
'DTPG',
'DTPS',
'DXCE',
'DXPE',
'LPC',
'PADG',
'POPC',
'POPE',
'POPG',
'PPC',
'PRPC',
'PRPS',
'PVDG'],
value='DPPC', description='Lipid')
display(lipid)
display(solvent)
display(nlip)
display(box)