lbugnon commited on
Commit
da2e179
·
1 Parent(s): ba82a11

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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