Skip to content

Commit

Permalink
cosmetic
Browse files Browse the repository at this point in the history
  • Loading branch information
eaton-lab committed Dec 16, 2024
1 parent c9debbd commit 8ea68f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipyrad/analysis/window_extracter.py
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ def get_sample_stats(self):

data = pd.DataFrame(index=names, columns=["nsites", "percent_missing"])
data["nsites"] = np.sum(self.seqarr != 78, axis=1)
data["percent_missing"] = 1 - round(data["nsites"] / self.seqarr.shape[1], 5)
data["percent_missing"] = round(1 - (data["nsites"] / self.seqarr.shape[1]), 5)
return data


Expand Down

0 comments on commit 8ea68f0

Please sign in to comment.