Update app.py
Browse files
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', '
|
| 100 |
-
'Watset[CW_lin, MCL]': Algorithm('watset', None, 'cw', 'mode=lin', 'mcl', '
|
| 101 |
-
'Watset[CW_log, MCL]': Algorithm('watset', None, 'cw', 'mode=log', 'mcl', '
|
| 102 |
-
'Watset[MCL, MCL]': Algorithm('watset', None, 'mcl', None, '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 |
|