You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to parse a GFF file, modify it by removing overlapping features, and write the new GFF to a file. I get the following error when trying to write the GFF:
TypeError: abytes-likeobjectisrequired, not'str'
I even get this same error when just parsing a GFF file and writing it to another file, without any modifications in between:
When looking in the source code, I noticed that you are reading the GFF file with mode "r" but writing with mode "wb". Could this be the reason why I get this error?
The text was updated successfully, but these errors were encountered:
I am trying to parse a GFF file, modify it by removing overlapping features, and write the new GFF to a file. I get the following error when trying to write the GFF:
I even get this same error when just parsing a GFF file and writing it to another file, without any modifications in between:
When looking in the source code, I noticed that you are reading the GFF file with mode
"r"
but writing with mode"wb"
. Could this be the reason why I get this error?The text was updated successfully, but these errors were encountered: