dustalov commited on
Commit
08405a6
·
verified ·
1 Parent(s): 2778789

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -96,10 +96,10 @@ ALGORITHMS: Dict[str, Algorithm] = {
96
 
97
  if MCL:
98
  ALGORITHMS.update({
99
- 'Watset[CW_top, MCL]': Algorithm('watset', None, 'cw', 'mode=top', 'mcl', 'mcl-bin=' + MCL),
100
- 'Watset[CW_lin, MCL]': Algorithm('watset', None, 'cw', 'mode=lin', 'mcl', 'mcl-bin=' + MCL),
101
- 'Watset[CW_log, MCL]': Algorithm('watset', None, 'cw', 'mode=log', 'mcl', 'mcl-bin=' + MCL),
102
- 'Watset[MCL, MCL]': Algorithm('watset', None, 'mcl', None, 'mcl', 'mcl-bin=' + MCL),
103
  'MCL': Algorithm('mcl-bin', bin=MCL)
104
  })
105
 
 
96
 
97
  if MCL:
98
  ALGORITHMS.update({
99
+ 'Watset[CW_top, MCL]': Algorithm('watset', None, 'cw', 'mode=top', 'mcl-bin', 'bin=' + MCL),
100
+ 'Watset[CW_lin, MCL]': Algorithm('watset', None, 'cw', 'mode=lin', 'mcl-bin', 'bin=' + MCL),
101
+ 'Watset[CW_log, MCL]': Algorithm('watset', None, 'cw', 'mode=log', 'mcl-bin', 'bin=' + MCL),
102
+ 'Watset[MCL, MCL]': Algorithm('watset', None, 'mcl', None, 'mcl-bin', 'bin=' + MCL),
103
  'MCL': Algorithm('mcl-bin', bin=MCL)
104
  })
105