Skip to content

Commit

Permalink
Merge pull request #225 from TheJacksonLaboratory/release/1.8.3
Browse files Browse the repository at this point in the history
Release/1.8.3
  • Loading branch information
iimpulse authored Nov 29, 2022
2 parents ccefd96 + 1f31b62 commit 705994a
Show file tree
Hide file tree
Showing 9 changed files with 1,260,445 additions and 905,236 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,14 +151,14 @@ <h4>Sorry no disease results found for.. "{{query}}"</h4>
<ng-container matColumnDef="entrezGeneId">
<mat-header-cell *matHeaderCellDef> Gene Identifier</mat-header-cell>
<mat-cell *matCellDef="let row">
<a routerLink="/browse/gene/{{row.entrezGeneId}}">{{row.entrezGeneId}}</a>
<a routerLink="/browse/gene/{{row.geneId}}">{{row.geneId}}</a>
</mat-cell>
</ng-container>

<!-- gene entrez Symbol -->
<ng-container matColumnDef="entrezGeneSymbol">
<mat-header-cell *matHeaderCellDef> Gene Symbol</mat-header-cell>
<mat-cell *matCellDef="let row"> {{row.entrezGeneSymbol}} </mat-cell>
<mat-cell *matCellDef="let row"> {{row.geneSymbol}} </mat-cell>
</ng-container>

<!-- Matching String -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ export class SearchResultsComponent {

genesMatchingStringBuilder(genes) {
genes.map(gene => {
if (gene.entrezGeneSymbol) {
gene['matchingString'] = gene.entrezGeneSymbol;
if (gene.geneSymbol) {
gene['matchingString'] = gene.geneSymbol;
}
});
return genes;
Expand Down
11,401 changes: 9,066 additions & 2,335 deletions server/src/main/resources/en_product6.xml

Large diffs are not rendered by default.

16,700 changes: 8,524 additions & 8,176 deletions server/src/main/resources/hgnc_complete_set.txt

Large diffs are not rendered by default.

Loading

0 comments on commit 705994a

Please sign in to comment.