diff --git a/src/app/components/analysis-window/analysis-window.component.html b/src/app/components/analysis-window/analysis-window.component.html
index 21eb1a405d252a5f5e882b526efae3cd69ef74b2..616582a40ad31e9980ced2167e645e8af394620c 100644
--- a/src/app/components/analysis-window/analysis-window.component.html
+++ b/src/app/components/analysis-window/analysis-window.component.html
@@ -21,9 +21,9 @@
           <li [class.is-active]="tab === 'meta'"><a (click)="tab = 'meta'">Parameters</a></li>
         </ul>
       </div>
-      <div class="content tab-content" *ngIf="task && task.info.done" [class.is-visible]="tab === 'meta'">
+      <div class="content tab-content meta" *ngIf="task && task.info.done" [class.is-visible]="tab === 'meta'">
         <div *ngIf="task">
-          <p>
+          <p *ngIf="task.info.algorithm !== 'quick' && task.info.algorithm !== 'super'">
             Algorithm: <strong>{{algorithmNames[task.info.algorithm]}}</strong>
           </p>
           <div>
@@ -37,6 +37,10 @@
                 <td>Number of trees</td>
                 <td>{{task.info.parameters.numTrees}}</td>
               </tr>
+              <tr *ngIf="task.info.parameters.tolerance || task.info.parameters.tolerance === 0">
+                <td>Tolerance</td>
+                <td>{{task.info.parameters.tolerance}}</td>
+              </tr>
               <tr *ngIf="task.info.parameters.dampingFactor">
                 <td>Damping Factor</td>
                 <td>{{task.info.parameters.dampingFactor}}</td>
@@ -62,6 +66,50 @@
               </tbody>
             </table>
           </div>
+          <div *ngIf="task.info.algorithm === 'quick' || task.info.algorithm === 'super'">
+            <p>
+              Algorithm: <strong>{{algorithmNames['multisteiner']}}</strong>
+            </p>
+            <table class="table is-narrow">
+              <tbody>
+              <tr>
+                <td>Number of Trees</td>
+                <td>5</td>
+              </tr>
+              <tr>
+                <td>Tolerance</td>
+                <td>10</td>
+              </tr>
+              </tbody>
+            </table>
+            <p>
+              Algorithm: <strong>{{algorithmNames['trustrank']}}</strong>
+            </p>
+            <table class="table is-narrow">
+              <tbody>
+              <tr>
+                <td>Damping Factor</td>
+                <td>0.85</td>
+              </tr>
+              <tr>
+                <td>Include indirect drugs</td>
+                <td>
+                  <i class="fa fa-times"></i>
+                </td>
+              </tr>
+              <tr>
+                <td>Include non-approved drugs</td>
+                <td>
+                  <i class="fa fa-times"></i>
+                </td>
+              </tr>
+              <tr>
+                <td>Result Size</td>
+                <td>30</td>
+              </tr>
+              </tbody>
+            </table>
+          </div>
         </div>
       </div>
       <div class="content tab-content" *ngIf="task && task.info.done" [class.is-visible]="tab === 'network'">
diff --git a/src/app/components/analysis-window/analysis-window.component.scss b/src/app/components/analysis-window/analysis-window.component.scss
index 09f93625591875a8866ef1721c671e11e6babc2f..082e3143d1f98190cb6dc8a075cf37549b44a395 100644
--- a/src/app/components/analysis-window/analysis-window.component.scss
+++ b/src/app/components/analysis-window/analysis-window.component.scss
@@ -35,3 +35,14 @@ div.network {
 .checkbox-col {
   width: 50px;
 }
+
+.meta {
+  table {
+    width: 500px;
+
+    td {
+      width: 50px;
+    }
+  }
+
+}
diff --git a/src/app/components/launch-analysis/launch-analysis.component.html b/src/app/components/launch-analysis/launch-analysis.component.html
index c0269b50a8cfbb2cce75778ad4716a12e97d8d37..3ed65ba88263973623fc6e31784b913501b5ebee 100644
--- a/src/app/components/launch-analysis/launch-analysis.component.html
+++ b/src/app/components/launch-analysis/launch-analysis.component.html
@@ -171,6 +171,23 @@
             </div>
           </div>
         </div>
+        <div class="field">
+          <label class="label" for="multisteiner-numtrees">Tolerance for trees</label>
+          <div class="control">
+            <div class="select">
+              <select id="multisteiner-tolerance" [(ngModel)]="multisteinerTolerance">
+                <option [ngValue]="0">0</option>
+                <option [ngValue]="1">1</option>
+                <option [ngValue]="2">2</option>
+                <option [ngValue]="3">3</option>
+                <option [ngValue]="5">5</option>
+                <option [ngValue]="10">10</option>
+                <option [ngValue]="15">15</option>
+                <option [ngValue]="20">20</option>
+              </select>
+            </div>
+          </div>
+        </div>
       </div>
     </section>
 
diff --git a/src/app/components/launch-analysis/launch-analysis.component.ts b/src/app/components/launch-analysis/launch-analysis.component.ts
index 3e6ccaeb898fd90011d5d4c48761ea932749396e..ed3aaacee354437658adff338cde4e026d9601a6 100644
--- a/src/app/components/launch-analysis/launch-analysis.component.ts
+++ b/src/app/components/launch-analysis/launch-analysis.component.ts
@@ -50,6 +50,7 @@ export class LaunchAnalysisComponent implements OnInit, OnChanges {
 
   // Multisteiner Parameters
   public multisteinerNumTrees = 5;
+  public multisteinerTolerance = 10;
 
   public hasBaits;
 
@@ -106,6 +107,7 @@ export class LaunchAnalysisComponent implements OnInit, OnChanges {
     } else if (this.algorithm === 'multisteiner') {
       parameters.strain_or_drugs = this.dataset;
       parameters.num_trees = this.multisteinerNumTrees;
+      parameters.tolerance = this.multisteinerTolerance;
     }
 
     await this.analysis.startAnalysis(this.algorithm, this.target, parameters);
diff --git a/src/app/interfaces.ts b/src/app/interfaces.ts
index 854ba5c1b41dd148643f81d8543afb994a9ab624..4f8c774efbf15b766281a12b7c6d083cc6494387 100644
--- a/src/app/interfaces.ts
+++ b/src/app/interfaces.ts
@@ -1,3 +1,5 @@
+import {AlgorithmType, QuickAlgorithmType} from './analysis.service';
+
 export type NodeType = 'host' | 'virus' | 'drug';
 
 export interface Protein {
@@ -34,7 +36,7 @@ export interface Task {
   token: string;
   info: {
     target: 'drug' | 'drug-target',
-    algorithm: 'trustrank' | 'multisteiner' | 'keypathwayminer' | 'quick';
+    algorithm: AlgorithmType | QuickAlgorithmType;
     parameters?: { [key: string]: any };
 
     workerId?: string;