Skip to content

Commit

Permalink
Fix #374 naming of CRISPRessoPooled file name
Browse files Browse the repository at this point in the history
  • Loading branch information
kclem authored Feb 5, 2024
1 parent 3f84c7d commit 751d9ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRISPResso2/CRISPRessoPooledCORE.py
Original file line number Diff line number Diff line change
Expand Up @@ -1174,7 +1174,7 @@ def rreplace(s, old, new):
n_reads_at_end = get_n_aligned_bam_region(bam_filename_genome, chr_str, curr_end-5, curr_end+5)

sub_chr_command = chr_cmd.replace("__REGION__", ":%d-%d "%(curr_pos, curr_end))
chr_output_filename = _jp('MAPPED_REGIONS/%s_%s_%s.info' % (chr_str, curr_pos, chr_end))
chr_output_filename = _jp('MAPPED_REGIONS/%s_%s_%s.info' % (chr_str, curr_pos, curr_end))
chr_commands.append(sub_chr_command)
chr_output_filenames.append(chr_output_filename)
curr_pos = curr_end
Expand Down

0 comments on commit 751d9ea

Please sign in to comment.