Skip to content

Commit e8e5d97

Browse files
committed
Add in bug fix
1 parent 418ebc4 commit e8e5d97

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

screenpro/assays/__init__.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -248,18 +248,21 @@ def calculateDrugScreen(self, score_level: Literal["compare_reps", "compare_guid
248248
self.adata, cond_ref=t0, cond_test=untreated, growth_rate=db_untreated,
249249
n_reps=self.n_reps,
250250
test=self.test, score_level=score_level,
251+
count_filter_threshold=count_filter_threshold,
252+
count_filter_type=count_filter_type
251253
**kwargs
252254
)
253255
self._add_phenotype_results(run_name, f'gamma:{gamma_name}', gamma)
254256

255257
for tr in treated:
256258
_, db_tr, db_diff = self._getTreatmentDoublingRate(untreated, tr, db_rate_col)
257-
258259
if t0 != None and type(t0) == str:
259260
tau_name, tau = runPhenoScore(
260261
self.adata, cond_ref=t0, cond_test=tr, growth_rate=db_tr,
261262
n_reps=self.n_reps,
262263
test=self.test, score_level=score_level,
264+
count_filter_threshold=count_filter_threshold,
265+
count_filter_type=count_filter_type
263266
**kwargs
264267
)
265268
self._add_phenotype_results(run_name, f'tau:{tau_name}', tau)

0 commit comments

Comments
 (0)