Skip to content

Commit

Permalink
fix max_raw_reads_sample setter
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacovercast committed Jan 6, 2025
1 parent 206aea6 commit f906ac2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipyrad/core/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down

0 comments on commit f906ac2

Please sign in to comment.