0.6.7 removed plt.show() from predict_string

parent d872bf96
...@@ -127,6 +127,7 @@ dmypy.json ...@@ -127,6 +127,7 @@ dmypy.json
/esm2_embs_3B /esm2_embs_3B
*.sh *.sh
draft.py draft.py
draft.ipynb
/data/string_species/mmseqs_dbs_orig/ /data/string_species/mmseqs_dbs_orig/
/data/human_virus/all_test_viruses.csv /data/human_virus/all_test_viruses.csv
/esm2_backup /esm2_backup
......
__version__ = "0.6.6" __version__ = "0.6.7"
__author__ = "Konstantin Volzhenin" __author__ = "Konstantin Volzhenin"
from . import model, commands, esm2_model, dataset, utils, network_utils from . import model, commands, esm2_model, dataset, utils, network_utils
......
...@@ -153,7 +153,6 @@ def main(params): ...@@ -153,7 +153,6 @@ def main(params):
save_path = '{}_graph_{}_{}.pdf'.format(params.output, '_'.join(params.genes), params.species) save_path = '{}_graph_{}_{}.pdf'.format(params.output, '_'.join(params.genes), params.species)
plt.savefig(save_path, bbox_inches='tight', dpi=600) plt.savefig(save_path, bbox_inches='tight', dpi=600)
print("The graphs were saved to: ", save_path) print("The graphs were saved to: ", save_path)
plt.show()
plt.close() plt.close()
except Exception as e: except Exception as e:
raise e raise e
......
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