Skip to content

Commit 49b228d

Browse files
committed
Changed default multi query score criterion to max.
1 parent 7f3902b commit 49b228d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/services/bioApi/helpers/search.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ export const SUPPORTED_ALGORITHMS = {
55
local: 'Local (Smith-Waterman)',
66
global: 'Global (Needleman-Wunsch)'
77
};
8-
export const SUPPORTED_CRITERIA = ['avg', 'max', 'min'];
8+
export const SUPPORTED_CRITERIA = ['max', 'min', 'avg'];
99

1010
export const DEFAULT_MATRIX_NAME = 'BLOSUM62';
1111
export const DEFAULT_ALGORITHM = 'local';
12-
export const DEFAULT_CRITERION = 'avg';
12+
export const DEFAULT_CRITERION = 'max';
1313

1414
export const DEFAULT_SINGLE_ALIGNMENT_OPTIONS: SingleQueryAlignmentOptions = {
1515
matrix: DEFAULT_MATRIX_NAME,

0 commit comments

Comments
 (0)