winanonanona

Results 2 comments of winanonanona

Hello, I'm also facing this issue with RagTag v2.1.0 installed through conda. I ended up adding an `str()` at lines 69 & 71 of ragtag_agp2fa.py as per @wq-ls 's suggestion,...

if agp_line.orientation == "-": sys.stdout.write(reverse_complement(str(fai.fetch(agp_line.comp, agp_line.comp_beg-1, agp_line.comp_end)))) else: sys.stdout.write(str(fai.fetch(agp_line.comp, agp_line.comp_beg-1, agp_line.comp_end))) Try this? so the `str` is both in line 69 and 71. @oucstar