pna059

Results 2 comments of pna059

Same for me, using same Tusk version under 20.04.1 LTS (Focal Fossa)

I have solved the issue by editing File "./src/CombineNearbyInteraction.py", line 245 ``` CurrChrDict.setdefault(curr_key, Interaction(int(linecontents[CCCol-1]), float(linecontents[PValCol - 1]), float(linecontents[QValCol - 1]))) ``` to ``` CurrChrDict.setdefault(curr_key, Interaction(float(int(linecontents[CCCol-1])), float(linecontents[PValCol - 1]), float(linecontents[QValCol -...