bkanaki commited on
Commit
c6c7883
·
verified ·
1 Parent(s): 8cbc037

update the right path to the database, update model metrics.

Browse files
Files changed (1) hide show
  1. README.md +31 -13
README.md CHANGED
@@ -29,7 +29,7 @@ task_categories:
29
 
30
  ## 1. Project Overview
31
 
32
- The **ExomeBench** dataset is derived from [ClinVar](https://www.ncbi.nlm.nih.gov/clinvar) [(March 2024 release)](https://ftp.ncbi.nlm.nih.gov/pub/clinvar/tab_delimited/), a publicly accessible database maintained by the National Center for Biotechnology Information (NCBI). ClinVar provides comprehensive information on the clinical significance of genetic variants and their associations with human diseases. This dataset focuses on variants located in exome-specific regions and includes input sequences generated from the [Human Reference Genome (HRG, GRCh38)](https://www.ncbi.nlm.nih.gov/datasets/genome/GCF_000001405.40/).
33
 
34
  This dataset provides a valuable resource for researchers and practitioners working on genetic variant analysis and its clinical implications. Exome-specific regions are critically important because they encompass all protein-coding regions of the genome, where disease-associated variants are most likely to occur. By focusing on exome-specific regions and using sequences from the Human Reference Genome, this dataset enables robust evaluation of models on clinically significant tasks.
35
 
@@ -134,31 +134,49 @@ ExomeBench includes **five supervised tasks**, each framed as a classification p
134
  <table border="1" cellspacing="0" cellpadding="8">
135
  <thead>
136
  <tr>
137
- <th rowspan="2">Model</th>
138
- <th colspan="5">Task<br>Acc/Precision/Recall/F1/ROCAUC</th>
139
  </tr>
140
  <tr>
141
- <th>PV</th>
142
- <th>CPS</th>
143
- <th>CP</th>
144
- <th>BRCA</th>
145
- <th>TFG</th>
146
  </tr>
147
  </thead>
148
  <tbody>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
149
  <tr>
150
  <td>NT-Multispecies-2.5B</td>
151
- <td align="center">0, 0, 0, 0, 0</td>
152
- <td align="center">0, 0, 0, 0, 0</td>
153
- <td align="center">0, 0, 0, 0, 0</td>
154
- <td align="center">0, 0, 0, 0, 0</td>
155
- <td align="center">0, 0, 0, 0, 0</td>
156
  </tr>
157
  </tbody>
158
  </table>
159
 
160
  </div>
161
 
 
 
162
 
163
  ## 5. Usage
164
  ```python
 
29
 
30
  ## 1. Project Overview
31
 
32
+ The **ExomeBench** dataset is derived from [ClinVar](https://www.ncbi.nlm.nih.gov/clinvar) [(Nov 2024 release)](https://ftp.ncbi.nlm.nih.gov/pub/clinvar/tab_delimited/archive/variant_summary_2024-11.txt.gz), a publicly accessible database maintained by the National Center for Biotechnology Information (NCBI). ClinVar provides comprehensive information on the clinical significance of genetic variants and their associations with human diseases. This dataset focuses on variants located in exome-specific regions and includes input sequences generated from the [Human Reference Genome (HRG, GRCh38)](https://www.ncbi.nlm.nih.gov/datasets/genome/GCF_000001405.40/).
33
 
34
  This dataset provides a valuable resource for researchers and practitioners working on genetic variant analysis and its clinical implications. Exome-specific regions are critically important because they encompass all protein-coding regions of the genome, where disease-associated variants are most likely to occur. By focusing on exome-specific regions and using sequences from the Human Reference Genome, this dataset enables robust evaluation of models on clinically significant tasks.
35
 
 
134
  <table border="1" cellspacing="0" cellpadding="8">
135
  <thead>
136
  <tr>
137
+ <th align="center" rowspan="2">Model</th>
138
+ <th align="center" colspan="5">Task (MCC)</th>
139
  </tr>
140
  <tr>
141
+ <th align="center">PV</th>
142
+ <th align="center">CPS</th>
143
+ <th align="center">CP</th>
144
+ <th align="center">BRCA</th>
145
+ <th align="center">TFG</th>
146
  </tr>
147
  </thead>
148
  <tbody>
149
+ <tr>
150
+ <td>DNABERT-2</td>
151
+ <td align="center">0.1615</td>
152
+ <td align="center">0.8763</td>
153
+ <td align="center">0.5488</td>
154
+ <td align="center">0.5518</td>
155
+ <td align="center">0.9959</td>
156
+ </tr>
157
+ <tr>
158
+ <td>HyenaDNA</td>
159
+ <td align="center">0.1345</td>
160
+ <td align="center">0.8160</td>
161
+ <td align="center">0.4450</td>
162
+ <td align="center">0.7000</td>
163
+ <td align="center">0.9940</td>
164
+ </tr>
165
  <tr>
166
  <td>NT-Multispecies-2.5B</td>
167
+ <td align="center">0.3064</td>
168
+ <td align="center">0.6244</td>
169
+ <td align="center">0.2934</td>
170
+ <td align="center">0.4224</td>
171
+ <td align="center">0.9906</td>
172
  </tr>
173
  </tbody>
174
  </table>
175
 
176
  </div>
177
 
178
+ > **Note**: For some models and tasks, the seed settings in the [STRAND paper](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=5183178) were slightly different from those used in this repository, which may lead to minor variations in the reported results.
179
+
180
 
181
  ## 5. Usage
182
  ```python