Skip to content

Commit

Permalink
Merge pull request #138 from jjavier-bm/master
Browse files Browse the repository at this point in the history
Fix bug
  • Loading branch information
jjavier-bm authored Nov 11, 2023
2 parents 5a79ebb + 4e8a05d commit 4938d2b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion crops/elements/sequences.py
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@ def add_sequence(self, newseq):

if newseq.name is not None:
if newseq.name in self.imer:
if self[newseq.name].imer.seqs['mainseq'] == newseq.seqs['mainseq']:
if self.imer[newseq.name].seqs['mainseq'] == newseq.seqs['mainseq']:
addall = False
else:
logging.critical(errormsg)
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ def _load_suite(self, cases, pattern, directory):
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
install_requires=dependencies)

0 comments on commit 4938d2b

Please sign in to comment.