Results 1 comments of Uki

Assuming genes in your text file are newline separated like this: ```text NC_002333.23 NC_002333.24 ``` This will work: ```python with open("michondrialgenesDR11.txt", "r") as f: mtgenes = set((i.strip() for i in...