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
In the the sequence SHVANSGYMGMTPRLGLESLLE*A*MIRVASQ, the AARead.ORFs function only returns the ORF GMTPRLGLESLLE but omits TPRLGLESLLE.
Here's a failing test:
deftestTwoStartsOneStop(self):
""" A sequence with two start codons and one stop codon must return two orfs. """read=AARead('id', 'SHVANSGYMGMTPRLGLESLLE*A*MIRVASQ')
orfs=list(read.ORFs(False))
self.assertEqual(2, len(orfs))
The text was updated successfully, but these errors were encountered:
In the the sequence
SHVANSGYMGMTPRLGLESLLE*A*MIRVASQ
, the AARead.ORFs function only returns the ORFGMTPRLGLESLLE
but omitsTPRLGLESLLE
.Here's a failing test:
The text was updated successfully, but these errors were encountered: