Skip to content

Commit

Permalink
#310. Fix. Correct column names
Browse files Browse the repository at this point in the history
const8ine committed Sep 6, 2024
1 parent ce2bd48 commit c66e8ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/core/services/csv-export-service.ts
Original file line number Diff line number Diff line change
@@ -93,7 +93,7 @@ export class CsvExportService extends AdditionalInterventionResolver {
}

public async generateGenesAgingMechanismsTable() {
return await this.generateSimplePairCsv(["HGNC", "aging mechanisms"], 'agingMechanisms', (g) => {
return await this.generateSimplePairCsv(["HGNC", "hallmarks of aging"], 'agingMechanisms', (g) => {
// Filter duplicates from backend
const mappedMechanisms = new Map();
g.agingMechanisms.forEach((e) => {
@@ -378,7 +378,7 @@ export class CsvExportService extends AdditionalInterventionResolver {
'intervention method',
'genotype',
'tissue',
'tissue specific promoter',
'promoter/driver',
'induction by drug withdrawal',
'drug',
'treatment start',

0 comments on commit c66e8ac

Please sign in to comment.