diff --git a/src/rds2py/granges.py b/src/rds2py/granges.py index 8f87a90..3347a4f 100644 --- a/src/rds2py/granges.py +++ b/src/rds2py/granges.py @@ -54,7 +54,9 @@ def as_granges(robj): _seqinfo = SeqInfo( seqnames=_seqinfo_seqnames, seqlengths=[None if x == -2147483648 else int(x) for x in _seqinfo_seqlengths], - is_circular=[None if x == -2147483648 else bool(x) for x in _seqinfo_is_circular], + is_circular=[ + None if x == -2147483648 else bool(x) for x in _seqinfo_is_circular + ], genome=_seqinfo_genome, )