Skip to content
Snippets Groups Projects
Select Git revision
  • f558e3b6601d6b31b3279fe5b53d1c0d870cf7bb
  • master default protected
  • csv_export
  • ndex
  • v1.1.18-rc2
  • v1.1.17
  • v1.1.16
  • v1.1.16-rc12
  • v1.1.16-rc11
  • v1.1.16-rc10
  • v1.1.16-rc9
  • v1.1.16-rc8
  • v1.1.16-rc7
  • v1.1.16-rc4
  • v1.1.16-rc3
  • v1.1.16-rc1
  • v1.1.6-rc1
  • v1.1.15
  • v1.1.15-rc7
  • v1.1.15-rc6
  • v1.1.15-rc3
  • v1.1.15-rc1
  • v1.1.14
  • v1.1.13
24 results

protein-analysis.component.html

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    protein-analysis.component.html 1.22 KiB
    <div class="modal" [class.is-active]="show">
      <div class="modal-background"></div>
      <div class="modal-card">
        <header class="modal-card-head">
          <p class="modal-card-title">Launch Protein Analysis</p>
          <button class="delete" aria-label="close" (click)="close()"></button>
        </header>
        <section class="modal-card-body">
          <h4 class="title is-4">Selection</h4>
          <table class="table">
            <thead>
            <tr>
              <td>AC</td>
              <td>Actions</td>
            </tr>
            </thead>
            <tbody>
            <tr *ngFor="let p of analysis.getSelection()">
              <td>{{p.proteinAc}}</td>
              <td>
                <button (click)="analysis.removeProtein(p)" class="button is-small is-danger">
                  <i class="fa fa-trash"></i>
                </button>
              </td>
            </tr>
            </tbody>
          </table>
        </section>
        <footer class="modal-card-foot">
          <button class="button is-primary">
            <span class="icon"><i class="fa fa-play"></i></span>
            <span>Multi Steiner</span>
          </button>
          <button class="button is-primary">
            <span class="icon"><i class="fa fa-play"></i></span>
            <span>Key Pathway Miner</span>
          </button>
        </footer>
      </div>
    </div>