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
{{ message }}
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.
Thanks for pointing this out. Are there specific name clashes you've experienced? I was trying to think through a scenario where the Seq language bio module may conflict with biopython or vice versa. I think biopython could be used successfully from within Seq if desired. e.g.
@python
def test_Bio():
from Bio import Seq as pySeq # importing from biopython
my_seq = pySeq.Seq("CATGTAGACTAG")
print(my_seq)
test_Bio()
Hi,
I am a little concerned with the import statement "from bio import *" as it is too similar to that of using Biopython - "from Bio import *"
The text was updated successfully, but these errors were encountered: