Skip to content

Commit

Permalink
additional
Browse files Browse the repository at this point in the history
  • Loading branch information
jkobject committed Oct 10, 2024
1 parent 06a5fbd commit 9a48765
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scdataloader/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ def load_genes(organisms: Union[str, list] = "NCBITaxon:9606"): # "NCBITaxon:10
genesdf["organism"] = organism
organismdf.append(genesdf)
organismdf = pd.concat(organismdf)
for col in ["source_id", "run_id", "created_by_id", "updated_at", "stable_id"]:
for col in ["source_id", "run_id", "created_by_id", "updated_at", "stable_id", "created_at"]:
if col in organismdf.columns:
organismdf.drop(columns=[col], inplace=True)
return organismdf
Expand Down

0 comments on commit 9a48765

Please sign in to comment.