Skip to content

Commit

Permalink
Small bug fix for the new 'reference update' mode
Browse files Browse the repository at this point in the history
  • Loading branch information
lucventurini committed Feb 15, 2019
1 parent 2badb57 commit 1d50775
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mikado/loci/superlocus.py
Original file line number Diff line number Diff line change
Expand Up @@ -1157,7 +1157,7 @@ def define_loci(self):
self.__lost = new_locus.lost_transcripts

if self.json_conf["pick"]["run_options"]["only_reference_update"] is True:
lids = self.loci.keys()
lids = list(self.loci.keys())[:]
for lid in lids:
if self.loci[lid].has_reference_transcript is False:
self.logger.debug("Removing %s (primary: %s) as it has no reference transcripts",
Expand Down

0 comments on commit 1d50775

Please sign in to comment.