Skip to content

Commit

Permalink
Merge branch 'features-fusions' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
acoffman committed Aug 15, 2024
2 parents 16c54fb + 76abf45 commit 2d21eb9
Show file tree
Hide file tree
Showing 97 changed files with 6,152 additions and 1,526 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,11 @@
[molecularProfile]="subject"></cvc-molecular-profile-tag>
}
@default {
{{ subject.name }}
<nz-tag>
<a [href]="subject.link">
{{ subject.name }}
</a>
</nz-tag>
}
}
</ng-container>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,10 @@
[nzValue]="featureTypes.Factor"
nzLabel="Factor">
</nz-option>
<nz-option
[nzValue]="featureTypes.Fusion"
nzLabel="Fusion">
</nz-option>
</nz-select>
</th>
<th nzLeft>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,48 +74,6 @@
</ng-template>
</nz-descriptions-item>

<!-- clinvar ids-->
<nz-descriptions-item
[nzSpan]="2"
[nzTitle]="
variant.clinvarIds.length > 1 ? 'ClinVar IDs' : 'ClinVar ID'
">
<ng-container
*ngIf="variant.clinvarIds.length > 0; else noClinvarIds">
<cvc-tag-list
*ngIf="
variant.clinvarIds[0] !== 'N/A';
else clinvarNotApplicable
">
<ng-container *ngFor="let id of variant.clinvarIds">
<cvc-link-tag
[href]="
'https://www.ncbi.nlm.nih.gov/clinvar/variation/' + id
"
tooltip="View on ClinVar">
{{ id }}
</cvc-link-tag>
</ng-container>
</cvc-tag-list>
</ng-container>

<ng-template #clinvarNotApplicable>
<span
nz-typography
nzType="secondary"
>N/A</span
>
</ng-template>

<ng-template #noClinvarIds>
<span
nz-typography
nzType="secondary"
>None provided</span
>
</ng-template>
</nz-descriptions-item>

<nz-descriptions-item
[nzSpan]="4"
*ngIf="this.displayMps.length > 0"
Expand Down
Loading

0 comments on commit 2d21eb9

Please sign in to comment.