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
Hello, I'm using the local API to optimize protein sequence.
While I was optimizing seqence "RSVGSVY", the output is "CGCTCCGTCGGCTCCAGCGTCTACTGA", which amino acid is "RSVGSSVY*". It seems the local server change the "GSV" to "GSSV".
Can you fix it?
The code I use:
import optipyzer
api = optipyzer.API(local=1)
dna = api.optimize(
seq = 'RSVGSVY',
seq_type='protein',
weights={"human": 2, "mouse": 1})
seq = dna['optimized_sd']
print(f"{seq},len={len(seq)}")
The text was updated successfully, but these errors were encountered:
Hello, I'm using the local API to optimize protein sequence.
While I was optimizing seqence "RSVGSVY", the output is "CGCTCCGTCGGCTCCAGCGTCTACTGA", which amino acid is "RSVGSSVY*". It seems the local server change the "GSV" to "GSSV".
Can you fix it?
The code I use:
The text was updated successfully, but these errors were encountered: