Skip to content

Commit d01ed0f

Browse files
committed
removed plot_protein fail if tm_dict.txt not found
1 parent cf51dc6 commit d01ed0f

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

basicrta/util.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -401,9 +401,12 @@ def make_residue_plots(results, comps=None, show=False):
401401

402402
def plot_protein(residues, t_slow, bars, prot=None, label_cutoff=3, ylim=None,
403403
major_tick=None, minor_tick=None, scale=1):
404-
with open('tm_dict.txt', 'r') as f:
405-
contents = f.read()
406-
prots = ast.literal_eval(contents)
404+
try:
405+
with open('tm_dict.txt', 'r') as f:
406+
contents = f.read()
407+
prots = ast.literal_eval(contents)
408+
except FileNotFoundError("tm_dict.txt not found"):
409+
prot = None
407410

408411
if not os.path.exists('figs'):
409412
os.mkdir('figs')

0 commit comments

Comments
 (0)