From f906ac25c2efc3103a72f9bca0a5b9f2d79bb0d8 Mon Sep 17 00:00:00 2001 From: Isaac Overcast Date: Mon, 6 Jan 2025 09:44:14 -0800 Subject: [PATCH] fix max_raw_reads_sample setter --- ipyrad/core/params.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipyrad/core/params.py b/ipyrad/core/params.py index c6d6ace9..4becf5f0 100644 --- a/ipyrad/core/params.py +++ b/ipyrad/core/params.py @@ -182,7 +182,7 @@ def mask_restriction_sites(self, value): def max_raw_reads_sample(self): return self._data["max_raw_reads_sample"] @max_raw_reads_sample.setter - def max_filtered_reads_sample(self, value): + def max_raw_reads_sample(self, value): self._data["max_raw_reads_sample"] = int(value)