-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbenchmarking_parameters.json
94 lines (93 loc) · 3.58 KB
/
benchmarking_parameters.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"datasets": {
"mhc_ligands": {
"lengths": [9],
"mismatches": 0,
"query": "queries/mhc-ligands-test.fasta",
"proteome": "proteomes/human.fasta",
"expected": "expected/mhc-ligands-expected.tsv"
},
"milk": {
"lengths": [15],
"mismatches": -1,
"query": "queries/milk-peptides-test.fasta",
"proteome": "proteomes/human.fasta",
"expected": "expected/milk-peptides-expected.tsv"
},
"coronavirus": {
"lengths": [8, 9, 10, 11, 12, 13, 14, 15],
"mismatches": 2,
"query": "queries/coronavirus-test.fasta",
"proteome": "proteomes/betacoronaviruses.fasta",
"expected": "expected/coronavirus-expected.tsv"
},
"neoepitopes": {
"lengths": [15],
"mismatches": 3,
"query": "queries/neoepitopes-test.fasta",
"proteome": "proteomes/human.fasta",
"expected": "expected/neoepitopes-expected.tsv"
}
},
"methods": [
{
"name": "PEPMatch",
"text_shifting": 0,
"method_parameters":{
"output_format": "dataframe"
}
},
{
"name": "NmerMatch",
"text_shifting": 0,
"method_parameters":{
"nmer_script_path": "NmerMatch/bin/run_nmer_match.pl",
"perl_exe": "",
"perl_include_path": "",
"catalog_master_dir": "",
"output_master_dir": ""
}
},
{
"name": "blast",
"text_shifting": 0,
"method_parameters":{
"bin_directory": "../bin"
}
},
{
"name": "diamond",
"text_shifting": 0,
"method_parameters":{
"bin_directory": "../bin"
}
},
{
"name": "mmseqs2",
"text_shifting": 0,
"method_parameters":{
"bin_directory": "../bin/"
}
},
{
"name": "horspool",
"text_shifting": 1,
"method_parameters":{}
},
{
"name": "boyer_moore",
"text_shifting": 1,
"method_parameters":{}
},
{
"name": "knuth_morris_pratt",
"text_shifting": 1,
"method_parameters":{}
},
{
"name": "z",
"text_shifting": 1,
"method_parameters":{}
}
]
}