Skip to content

Commit

Permalink
Fix bug for when guides don't agree in CRISPRessoAggregate
Browse files Browse the repository at this point in the history
  • Loading branch information
kclem committed May 8, 2022
1 parent 7eb7631 commit e88b683
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRISPResso2/CRISPRessoAggregateCORE.py
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ def main():
if guides_all_same:
sgRNA_intervals = [consensus_sgRNA_intervals] * modification_frequency_summary_df.shape[0]
else:
sgRNA_intervals = consensus_sgRNA_intervals
sgRNA_intervals = [consensus_sgRNA_intervals]
for modification_type in ['Insertions', 'Deletions', 'Substitutions']:
modification_df = modification_frequency_summary_df[
modification_frequency_summary_df['Modification'] == modification_type
Expand Down

0 comments on commit e88b683

Please sign in to comment.