We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f3902b commit 49b228dCopy full SHA for 49b228d
src/lib/services/bioApi/helpers/search.ts
@@ -5,11 +5,11 @@ export const SUPPORTED_ALGORITHMS = {
5
local: 'Local (Smith-Waterman)',
6
global: 'Global (Needleman-Wunsch)'
7
};
8
-export const SUPPORTED_CRITERIA = ['avg', 'max', 'min'];
+export const SUPPORTED_CRITERIA = ['max', 'min', 'avg'];
9
10
export const DEFAULT_MATRIX_NAME = 'BLOSUM62';
11
export const DEFAULT_ALGORITHM = 'local';
12
-export const DEFAULT_CRITERION = 'avg';
+export const DEFAULT_CRITERION = 'max';
13
14
export const DEFAULT_SINGLE_ALIGNMENT_OPTIONS: SingleQueryAlignmentOptions = {
15
matrix: DEFAULT_MATRIX_NAME,
0 commit comments