Commit e7b239c9 authored by Gustaf's avatar Gustaf
Browse files

Add missing variable

parent 2c7ce956
...@@ -66,6 +66,7 @@ def main(args): ...@@ -66,6 +66,7 @@ def main(args):
with open(path, 'r') as fp: with open(path, 'r') as fp:
core_str = fp.read() core_str = fp.read()
core_prot = protein.from_proteinnet_string(core_str) core_prot = protein.from_proteinnet_string(core_str)
aatype = core_prot.aatype
seq = ''.join([ seq = ''.join([
residue_constants.restypes_with_x[aatype[i]] residue_constants.restypes_with_x[aatype[i]]
for i in range(len(aatype)) for i in range(len(aatype))
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment