File

src/app/models/report.model.ts

Index

Properties

Properties

anatomicalStructures
anatomicalStructures: AS[]
Type : AS[]
ASWithNoCT
ASWithNoCT: EntityWithNoOtherEntity[]
Type : EntityWithNoOtherEntity[]
ASWithNoLink
ASWithNoLink: AS[]
Type : AS[]
biomarkers
biomarkers: B[]
Type : B[]
BWithNoLink
BWithNoLink: B[]
Type : B[]
cellTypes
cellTypes: CT[]
Type : CT[]
CTWithNoB
CTWithNoB: EntityWithNoOtherEntity[]
Type : EntityWithNoOtherEntity[]
CTWithNoLink
CTWithNoLink: CT[]
Type : CT[]
import { Sheet } from './sheet.model';
import { AS, B, CT } from './tree.model';

export interface Report {
  ASWithNoLink: AS[];
  CTWithNoLink: CT[];
  BWithNoLink: B[];
  anatomicalStructures: AS[];
  cellTypes: CT[];
  biomarkers: B[];
  ASWithNoCT: EntityWithNoOtherEntity[];
  CTWithNoB: EntityWithNoOtherEntity[];
}

export interface ReportData {
  data: Report;
  sheet: Sheet;
}

export interface CByOrgan {
  organName?: string;
  anatomicalStructures?: number;
  cellTypes?: number;
  biomarkers?: number;
}

export interface EntityWithNoOtherEntity {
  structure: string;
  organName: string;
  link: string;
  label: string;
}

export interface BiomarkersNamesInReport {
  type: string;
  name: string;
}

export interface BiomarkersCounts {
  name: string;
  value: number;
}

results matching ""

    No results matching ""