Hukuna commited on
Commit
0125f75
·
1 Parent(s): 80298c4
output/free_protein.pdb CHANGED
The diff for this file is too large to render. See raw diff
 
output/free_protein_trajectory.pdb CHANGED
The diff for this file is too large to render. See raw diff
 
pages/{page_for_free_compose.py → design.py} RENAMED
@@ -85,7 +85,7 @@ with contextlib.redirect_stdout(None):
85
  def composeSample(composed_cond,output,**kwargs):
86
 
87
  protein, trajectories = chroma.sample(chain_lengths=[100],
88
- conditioner=composed_cond,**kwargs)
89
 
90
  render(protein, trajectories, output=output)
91
 
@@ -169,28 +169,28 @@ def selectBackboneArgs():
169
 
170
  parameters={}
171
  if 'steps' in options:
172
- parameters['steps']=container.number_input(min_value=150,max_value=500,step=50,value=200,key='steps_sample')
173
  if 'samples' in options:
174
- parameters['samples']=container.number_input(min_value=1,max_value=5,value=1,step=1,key='samples')
175
  if 'chain_lengths' in options:
176
- parameters['chain_lengths'] = container.number_input(min_value=50,max_value=350, step=50,value=100,key='chain_lengths')
177
 
178
  if 'tspan' in options:
179
  parameters['tspan'] = container.slider('Select time span', min_value=0.001, max_value=1.0, value=(1.0, 0.001),step=0.001)
180
 
181
  if 'langevin_factor' in options:
182
- parameters['langevin_factor'] = container.number_input(min_value=1.0, max_value=5.0, value=2.0, step=1,
183
  key='langevin_factor')
184
 
185
  if 'langevin_isothermal' in options:
186
- parameters['langevin_isothermal'] = container.checkbox(value=False)
187
 
188
  if 'inverse_temperature' in options:
189
- parameters['inverse_temperature'] = container.number_input(min_value=0, max_value=40, value=10, step=2,
190
  key='inverse_temperature')
191
 
192
  if 'initialize_noise' in options:
193
- parameters['initialize_noise'] = container.checkbox(value=True)
194
 
195
  if 'integrate_func' in options:
196
  parameters['integrate_func'] = container.selectbox('Select Integration Function', ['euler_maruyama', 'heun'],
@@ -200,7 +200,7 @@ def selectBackboneArgs():
200
  parameters['sde_func'] = container.selectbox('Select SDE Function', ['langevin', 'reverse_sde', 'ode'], index=0)
201
 
202
  if 'trajectory_length' in options:
203
- parameters['trajectory_length'] = container.number_input(min_value=50, max_value=300, value=200, step=50,
204
  key='trajectory_length')
205
 
206
  if 'protein_init' in options:
 
85
  def composeSample(composed_cond,output,**kwargs):
86
 
87
  protein, trajectories = chroma.sample(chain_lengths=[100],
88
+ conditioner=composed_cond,full_output=True,**kwargs)
89
 
90
  render(protein, trajectories, output=output)
91
 
 
169
 
170
  parameters={}
171
  if 'steps' in options:
172
+ parameters['steps']=container.number_input("",min_value=150,max_value=500,step=50,value=200,key='steps_sample')
173
  if 'samples' in options:
174
+ parameters['samples']=container.number_input("",min_value=1,max_value=5,value=1,step=1,key='samples')
175
  if 'chain_lengths' in options:
176
+ parameters['chain_lengths'] = container.number_input("",min_value=50,max_value=350, step=50,value=100,key='chain_lengths')
177
 
178
  if 'tspan' in options:
179
  parameters['tspan'] = container.slider('Select time span', min_value=0.001, max_value=1.0, value=(1.0, 0.001),step=0.001)
180
 
181
  if 'langevin_factor' in options:
182
+ parameters['langevin_factor'] = container.number_input("",min_value=1.0, max_value=5.0, value=2.0, step=1,
183
  key='langevin_factor')
184
 
185
  if 'langevin_isothermal' in options:
186
+ parameters['langevin_isothermal'] = container.checkbox("",value=False)
187
 
188
  if 'inverse_temperature' in options:
189
+ parameters['inverse_temperature'] = container.number_input("",min_value=0, max_value=40, value=10, step=2,
190
  key='inverse_temperature')
191
 
192
  if 'initialize_noise' in options:
193
+ parameters['initialize_noise'] = container.checkbox("",value=True)
194
 
195
  if 'integrate_func' in options:
196
  parameters['integrate_func'] = container.selectbox('Select Integration Function', ['euler_maruyama', 'heun'],
 
200
  parameters['sde_func'] = container.selectbox('Select SDE Function', ['langevin', 'reverse_sde', 'ode'], index=0)
201
 
202
  if 'trajectory_length' in options:
203
+ parameters['trajectory_length'] = container.number_input("",min_value=50, max_value=300, value=200, step=50,
204
  key='trajectory_length')
205
 
206
  if 'protein_init' in options:
app.py → use_cases_demo.py RENAMED
File without changes