There is a bug encountered when force fitting an unstable best fit. Line 577 in DanceMapper.py sets bestfit to None, then line 593 tries to call bestfit.imputeInactiveParams(). I'm not sure what the intended output is for this scenario.
Bestfit solution only found 1 times -- unstable!!!
Traceback (most recent call last):
File "/nas/longleaf/home/anaaatan/DanceMapper/DanceMapper.py", line 1286, in <module>
forcefit = True)
File "/nas/longleaf/home/anaaatan/DanceMapper/DanceMapper.py", line 593, in fitEM
bestfit.imputeInactiveParams(self.reads, self.mutations)
AttributeError: 'NoneType' object has no attribute 'imputeInactiveParams'
There is a bug encountered when force fitting an unstable best fit. Line 577 in DanceMapper.py sets
bestfittoNone, then line 593 tries to callbestfit.imputeInactiveParams(). I'm not sure what the intended output is for this scenario.