You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/scdef/models/_scdef.py
+10-6Lines changed: 10 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1556,7 +1556,8 @@ def filter_factors(
1556
1556
self,
1557
1557
thres: Optional[float] =0.0,
1558
1558
iqr_mult: Optional[float] =0.0,
1559
-
min_cells: Optional[float] =0.001,
1559
+
min_cells_upper: Optional[float] =0.001,
1560
+
min_cells_lower: Optional[float] =0.0,
1560
1561
filter_up: Optional[bool] =True,
1561
1562
normalized: Optional[bool] =False,
1562
1563
):
@@ -1568,17 +1569,20 @@ def filter_factors(
1568
1569
min_cells: minimum number of cells that each factor must have attached to it for it to be kept. If between 0 and 1, fraction. Otherwise, absolute value
1569
1570
filter_up: whether to remove factors in upper layers via inter-layer attachments
0 commit comments