Skip to content

Commit 5cd863b

Browse files
committed
Use LIP over LI as shorthand for lipidomics
1 parent a39f967 commit 5cd863b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

web/src/components/Presentation/UpSet.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export default defineComponent({
3939
};
4040
const fontSize = 12;
4141
42-
const setOrder = ['MG', 'MT', 'MP', 'MB', 'NOM', 'LI'];
42+
const setOrder = ['MG', 'MT', 'MP', 'MB', 'NOM', 'LIP'];
4343
const Samples = 'Samples';
4444
const Studies = 'Studies';
4545
const seriesTitles = [Samples, Studies];

web/src/encoding.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ function makeSetsFromBitmask(mask_str: string) {
245245
sets.push('MG');
246246
}
247247
if (1 & mask) {
248-
sets.push('LI');
248+
sets.push('LIP');
249249
}
250250
return sets;
251251
}
@@ -649,7 +649,7 @@ const MultiomicsValue = {
649649
MP: 0b001000,
650650
MT: 0b000100,
651651
NOM: 0b000010,
652-
LI: 0b000001,
652+
LIP: 0b000001,
653653
};
654654

655655
export {

web/src/views/Search/BiosampleVisGroup.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const staticUpsetTooltips = {
3131
MB: 'Metabolomics',
3232
MT: 'Metatranscriptomics',
3333
NOM: 'Natural Organic Matter',
34-
LI: 'Lipidomics',
34+
LIP: 'Lipidomics',
3535
};
3636
3737
export default defineComponent({

0 commit comments

Comments
 (0)