fix label naming chromatin features
Browse files
genomics-long-range-benchmark.py
CHANGED
|
@@ -683,7 +683,7 @@ class ChromatinFeaturesHandler(GenomicLRATaskHandler):
|
|
| 683 |
|
| 684 |
if 'histone' in task_name:
|
| 685 |
self.label_name = 'HISTONES'
|
| 686 |
-
elif '
|
| 687 |
self.label_name = 'DNASE'
|
| 688 |
|
| 689 |
self.data_file_name = "chromatin_features/histones_and_dnase_subset.csv" if \
|
|
|
|
| 683 |
|
| 684 |
if 'histone' in task_name:
|
| 685 |
self.label_name = 'HISTONES'
|
| 686 |
+
elif 'dna' in task_name:
|
| 687 |
self.label_name = 'DNASE'
|
| 688 |
|
| 689 |
self.data_file_name = "chromatin_features/histones_and_dnase_subset.csv" if \
|