Skip to content

Commit 048efaa

Browse files
committed
Fix multiomics bitmask
1 parent 234d7fb commit 048efaa

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

web/src/encoding.ts

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -674,12 +674,13 @@ function getField(name: string, table?: entityType): FieldsData {
674674
}
675675

676676
const MultiomicsValue = {
677-
MB: 0b100000,
678-
MG: 0b010000,
679-
MP: 0b001000,
680-
MT: 0b000100,
681-
NOM: 0b000010,
682-
LIP: 0b000001,
677+
MB: 0b1000000,
678+
MG: 0b0100000,
679+
MP: 0b0010000,
680+
MT: 0b0001000,
681+
LIP: 0b0000100,
682+
NOM: 0b0000010,
683+
AMP: 0b0000001,
683684
};
684685

685686
const metaproteomicCategoryEnumToDisplay = {

0 commit comments

Comments
 (0)