Skip to content

Commit

Permalink
fixed typo in dict
Browse files Browse the repository at this point in the history
  • Loading branch information
erinyoung committed Jul 16, 2024
1 parent ca1dc85 commit a3a0811
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion donut_falls.nf
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,8 @@ process copy {
line = line.strip()
if line.startswith('>'):
contig = str(line.replace('>','').split()[0])
circular = gfa_dict[contig]['circular'].replace('Y','true').replace('N','false')
print(gfa_dict[contig])
circular = gfa_dict[contig]['Is circular'].replace('Y','true').replace('N','false')
length = gfa_dict[contig]['Total segment length']
gc_per = gfa_dict[contig]['GC content %']
meandepth = circulocov_dict[contig]['nanopore_meandepth']
Expand Down

0 comments on commit a3a0811

Please sign in to comment.