How to make a new Read object from string, so that I can call Read.antisense ?
fa = pyfastx.Fastx("x.fq")
for name,seq,_ in fa:
seqF = seq[:100]
I want to get antisense of seqF.
However, fa[-1][:100] not working as "TypeError: 'Read' object is not subscriptable".