Update app.py
Browse files
app.py
CHANGED
|
@@ -24,8 +24,9 @@ def fold(id, sequence):
|
|
| 24 |
dotbracket = ct2dot(ct_file)
|
| 25 |
except:
|
| 26 |
dotbracket = ""
|
|
|
|
| 27 |
msg = "CT to dotbracket failed (check ct file)"
|
| 28 |
-
|
| 29 |
with open(fasta_file, "w") as f:
|
| 30 |
f.write(f">{id}\n{sequence}\n{dotbracket}")
|
| 31 |
|
|
|
|
| 24 |
dotbracket = ct2dot(ct_file)
|
| 25 |
except:
|
| 26 |
dotbracket = ""
|
| 27 |
+
structure_draw = ""
|
| 28 |
msg = "CT to dotbracket failed (check ct file)"
|
| 29 |
+
|
| 30 |
with open(fasta_file, "w") as f:
|
| 31 |
f.write(f">{id}\n{sequence}\n{dotbracket}")
|
| 32 |
|