Skip to content

Commit

Permalink
Fix int bug for n_reads in CRISPRessoPooled
Browse files Browse the repository at this point in the history
  • Loading branch information
kclem committed Nov 10, 2021
1 parent fc1ae89 commit ef15cae
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions CRISPResso2/CRISPRessoPooledCORE.py
Expand Up @@ -768,8 +768,9 @@ def main():
n_reads_aligned_amplicons=[]
crispresso_cmds = []
for idx, row in df_template.iterrows():
n_reads_aligned_amplicons.append(get_n_reads_fastq(row['Demultiplexed_fastq.gz_filename']))
info('\n Processing:%s with %d reads'%(idx,n_reads_aligned_amplicons))
this_n_reads = get_n_reads_fastq(row['Demultiplexed_fastq.gz_filename'])
n_reads_aligned_amplicons.append(this_n_reads)
info('\n Processing:%s with %d reads'%(idx,this_n_reads))
this_amp_seq = row['Amplicon_Sequence']
this_amp_name_string = ""
if idx in alternate_alleles:
Expand Down

0 comments on commit ef15cae

Please sign in to comment.