From 18f1b811838f496ba6798a053363213524ea7436 Mon Sep 17 00:00:00 2001 From: Donald Campbell <125581724+donaldcampbelljr@users.noreply.github.com> Date: Mon, 29 Jan 2024 14:39:32 -0500 Subject: [PATCH] remove unused code --- bedboss/bedbuncher/bedbuncher.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/bedboss/bedbuncher/bedbuncher.py b/bedboss/bedbuncher/bedbuncher.py index 4cf8f01..2517b84 100644 --- a/bedboss/bedbuncher/bedbuncher.py +++ b/bedboss/bedbuncher/bedbuncher.py @@ -87,17 +87,6 @@ def calculate_bedset_statistics(bbc: BedBaseConf, bedset: BedSet) -> dict: _LOGGER.info("Bedset statistics were calculated successfully") return results_dict - # # Another way to do it, but it's slower: - # results_dict = {} - # results = bbc.bed.retrieve(record_identifier=list_of_samples, result_identifier=int_col)["records"] - # for sample in results: - # for stat_value_dict in sample.values(): - # for key, value in stat_value_dict.items(): - # if key in results_dict: - # results_dict[key].append(value) - # else: - # results_dict[key] = [value] - def create_bed_list_file(bedset: BedSet, file_path: str) -> None: """