Skip to content

Commit

Permalink
Update _core.py (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
zktuong committed May 4, 2023
1 parent bb238da commit 8a50b91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dandelion/utilities/_core.py
Expand Up @@ -1593,7 +1593,7 @@ def retrieve(self, query, retrieve_mode):
cols.update({query + "_VJ": np.nan})
elif retrieve_mode == "merge":
cols.update(
{query: "|".join(x for x in set(vdj + vj) if present(x))}
{query: "|".join(x for x in (vdj + vj) if present(x))}
)
elif retrieve_mode == "split":
if len(vdj) > 0:
Expand Down Expand Up @@ -1947,7 +1947,7 @@ def retrieve_celltype(self, query, retrieve_mode):
{
query: "|".join(
x
for x in set(
for x in (
b_vdj
+ abt_vdj
+ gdt_vdj
Expand Down

0 comments on commit 8a50b91

Please sign in to comment.