Skip to content

Commit

Permalink
Fixing 8bf584b (pickling of BED12Parser objects, fix no. 2)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucventurini committed Mar 31, 2020
1 parent e265e18 commit f074581
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Mikado/parsers/bed12.py
Original file line number Diff line number Diff line change
Expand Up @@ -1512,6 +1512,7 @@ def __getstate__(self):
def __setstate__(self, state):
fasta_index = state.pop("fasta_index", None)
super().__setstate__(state)
self.logger = create_null_logger()
self.__set_fasta_index(fasta_index)

def bed_next(self):
Expand Down

0 comments on commit f074581

Please sign in to comment.