Skip to content
Snippets Groups Projects
Select Git revision
  • 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
23 results

explorer-page.component.html

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    explorer-page.component.html 23.01 KiB
    <div id="appWindow" class="is-hidden-mobile fullheight" [style.color]="textColor" (window:resize)="onResize($event)">
    
    
      <app-launch-analysis [(show)]="showAnalysisDialog"
                           [target]="analysisDialogTarget"
                           [config]="myConfig"
                           [inputNetwork]="{nodes:proteins, edges:edges}">
      </app-launch-analysis>
    
      <app-custom-proteins [(show)]="showCustomProteinsDialog" [visibleNodes]="currentViewNodes">
      </app-custom-proteins>
    
      <app-add-expressed-proteins [(show)]="showThresholdDialog"
                                  [selectedTissue]="currentViewSelectedTissue"
                                  [visibleNodes]="currentViewNodes"
                                  [currentViewProteins]="currentViewProteins"
                                  [expressionMap]="expressionMap"
                                  >
      </app-add-expressed-proteins>
    
      <!-- Start explorer -->
      <div class="covex explorer">
    
        <!-- Start left sidebar -->
        <div *ngIf="myConfig.showLeftSidebar" class="covex sidebar bar-left">
    
          <div *ngIf="myConfig.showOverview" class="card bar-large" [ngClass]="{'b-text-small':smallStyle}">
            <header class="card-header">
              <p class="card-header-title">
                    <span class="icon">
                      <i class="fas fa-info" aria-hidden="true"></i>
                    </span> Network Overview
              </p>
              <a (click)="collapseOverview= !collapseOverview" data-action="collapse"
                 class="card-header-icon is-hidden-fullscreen" aria-label="more options">
                 <span *ngIf="collapseOverview" class="icon">
                  <i class="fas fa-angle-down" aria-hidden="true"></i>
                </span>
                <span *ngIf="!collapseOverview" class="icon">
                  <i class="fas fa-angle-left" aria-hidden="true"></i>
                </span>
              </a>
            </header>
            <div *ngIf="collapseOverview">
              <div class="card-content">
                <nav class="level" *ngIf="proteinData">
    
                  <!-- TO DO  : CHANGE THIS LATER
                 <div class="level-item has-text-centered">
                   <div>
                     <p class="heading">Viral<br>Proteins</p>
                     <p class="title"> {{ proteinData.effects.length }}</p>
                   </div>
                 </div>
                 -->
    
                  <div class="level-item has-text-centered">
                    <div>
                      <p class="heading">Proteins</p>
                      <p class="title">{{ proteinData.proteins.length }}</p>
                    </div>
                  </div>
                  <div class="level-item has-text-centered">
                    <div>
                      <p class="heading">Interactions</p>
                      <p class="title">{{ proteinData.edges.length }}</p>
                    </div>
                  </div>
                </nav>
              </div>