From 3657a1e46ad537315fddddffe056b80f1d7c3861 Mon Sep 17 00:00:00 2001 From: Kevin Lamkiewicz Date: Wed, 9 Dec 2020 14:41:38 +0100 Subject: [PATCH] found a bug in the NCBI database; this, and the last commit --- bin/cluster_statistics.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/bin/cluster_statistics.py b/bin/cluster_statistics.py index 425ca2c..a8284a7 100644 --- a/bin/cluster_statistics.py +++ b/bin/cluster_statistics.py @@ -41,8 +41,6 @@ def retrieve_taxonomy(prefix, accID2desc): for acc in accessionIDs: if acc in accID2desc: description = accID2desc[acc] - if acc == 'KX148547': - print(description) if clusterID in realCluster: avgClusterPerSpecies[description[2][2]].add(clusterID) avgClusterPerGenus[description[2][1]].add(clusterID)