Skip to content

Commit

Permalink
changing the name of footprints from footprint_ to f_ to make sure th…
Browse files Browse the repository at this point in the history
…e script of René works well
  • Loading branch information
anastasiia committed Jan 8, 2019
1 parent 7a5d6df commit 0308a0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/1.1_footprint_extraction/footprints_extraction.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit 0308a0c

Please sign in to comment.