From 0308a0c8a3657769c235b20fff6803aa8b36a38f Mon Sep 17 00:00:00 2001 From: anastasiia Date: Tue, 8 Jan 2019 12:28:29 +0100 Subject: [PATCH] =?UTF-8?q?changing=20the=20name=20of=20footprints=20from?= =?UTF-8?q?=20footprint=5F=20to=20f=5F=20to=20make=20sure=20the=20script?= =?UTF-8?q?=20of=20Ren=C3=A9=20works=20well?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bin/1.1_footprint_extraction/footprints_extraction.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/1.1_footprint_extraction/footprints_extraction.py b/bin/1.1_footprint_extraction/footprints_extraction.py index 3e94956..d1b0f8f 100644 --- a/bin/1.1_footprint_extraction/footprints_extraction.py +++ b/bin/1.1_footprint_extraction/footprints_extraction.py @@ -195,7 +195,7 @@ def save_footprint(footprint_count, footprint_scores, peak_footprints, chromosom if save_current_footprint == True: #make sure to save this footprint - footprint_name = "footprint_" + str(footprint_count) + footprint_name = "f_" + str(footprint_count) peak_footprints[footprint_name] = peak_footprints.get(footprint_name, {}) peak_footprints[footprint_name] = {'chromosom': chromosom, 'start': footprint_start, 'end': footprint_end, 'score': footprint_score, 'len': len(footprint_scores), 'bonus': bonus_info_from_bed, 'max_pos': max_pos}