We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a27fae1 commit 0de58ddCopy full SHA for 0de58dd
ovrlpy/_kde.py
@@ -226,6 +226,7 @@ def _sample_expression(
226
227
if genes is not None:
228
transcripts = transcripts.filter(pl.col("gene").cast(pl.String).is_in(genes))
229
+ gene_list = sorted(transcripts[gene_column].unique())
230
231
# truncate * bandwidth -> _TRUNCATE * 1
232
padding = _TRUNCATE
@@ -279,8 +280,8 @@ def _sample_expression(
279
280
pd.DataFrame(dict(f.result() for f in as_completed(futures)))
281
)
282
del futures
283
+ del transcripts, local_maximum_coordinates
284
- gene_list = sorted(transcripts[gene_column].unique())
285
# TODO: sparse?
286
with warnings.catch_warnings():
287
warnings.simplefilter("ignore", category=ImplicitModificationWarning)
0 commit comments