Skip to content

Commit

Permalink
Fixed MMG ID
Browse files Browse the repository at this point in the history
  • Loading branch information
navduhan committed Oct 2, 2022
1 parent 00e3a19 commit 81778f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyseqrna/multimapped_groups.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def filterGenes(mmg=None):
final = final[col]
mmgid = []

for m in range(1,final.shape[0]):
for m in range(0,final.shape[0]):
mmgid.append("MMG_"+str(m))
final.MMG = mmgid
return final
Expand Down

0 comments on commit 81778f8

Please sign in to comment.