Skip to content

Commit

Permalink
#310. Fix. Remove tab characters from values, correct column names
Browse files Browse the repository at this point in the history
  • Loading branch information
const8ine committed Aug 22, 2024
1 parent 0f4fe38 commit b558537
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/app/core/services/csv-export-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export class CsvExportService extends AdditionalInterventionResolver {
}

private sanitize(string) {
// TODO: make sanitization for tsv format
string = string.replace('\t', ' ')
return string;
}

Expand Down Expand Up @@ -349,7 +349,7 @@ export class CsvExportService extends AdditionalInterventionResolver {
'control cohort size',
'experiment cohort size',
'quantity of animals in a cage or container',
'containment temperature (Celcius)',
'containment temperature (Celsius)',
'diet',
'target gene expression change',
'control lifespan - min',
Expand All @@ -362,13 +362,13 @@ export class CsvExportService extends AdditionalInterventionResolver {
'experiment lifespan - max',
'lifespan time unit',
'lifespan % change - min',
'significance',
'significance - min',
'lifespan % change - mean',
'significance',
'significance - mean',
'lifespan % change - median',
'significance',
'significance - median',
'lifespan % change - max',
'significance',
'significance - max',
'intervention deteriorates',
'intervention improves',
'main effect on lifespan',
Expand Down

0 comments on commit b558537

Please sign in to comment.