Skip to content

Commit

Permalink
v1.7.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Kinggerm committed Feb 22, 2021
1 parent a089bff commit 6014d45
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions GetOrganelleLib/versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ def get_versions():


versions = [
{
"number": "1.7.3.5",
"features": [
"1. README.md updated with embplant_mt notes",
"2. remove invalid --genes file check",
],
"time": "2021-02-23 01:11 UTC+8"
},
{
"number": "1.7.3.4",
"features": [
Expand Down
2 changes: 1 addition & 1 deletion get_organelle_from_reads.py
Original file line number Diff line number Diff line change
Expand Up @@ -768,7 +768,7 @@ def _check_default_db(this_sub_organelle, extra_type=""):
for sub_genes in str(options.genes_fasta).split(","):
# if sub_genes == "":
# temp_vals.append(sub_genes)
if not (os.path.exists(sub_genes) and os.path.exists(remove_db_postfix(sub_genes) + ".nhr")):
if not os.path.exists(sub_genes):
log_handler.error(sub_genes + " not found!")
exit()
else:
Expand Down

0 comments on commit 6014d45

Please sign in to comment.