We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d3290d commit be602eaCopy full SHA for be602ea
bin/deepcoil
@@ -47,7 +47,15 @@ print('Predicting...')
47
preds = dc.predict(data)
48
49
print('Writing output...')
50
-for entry in data.keys():
+
51
+inp_keys = set(data.keys())
52
+out_keys = set(preds.keys())
53
54
+if len(out_keys) < len(inp_keys):
55
+ print('WARNING: Predictions for some sequences were not calculated due to length limitations and/or other errors.' \
56
+ ' Inspect the warnings and results carefully!')
57
58
+for entry in out_keys:
59
f = open(f'{args.out_path}/{entry}.out', 'w')
60
cc_pred_raw = preds[entry]['cc']
61
cc_pred = sharpen_preds(cc_pred_raw)
0 commit comments