Skip to content

Commit

Permalink
lint changes
Browse files Browse the repository at this point in the history
  • Loading branch information
kataikko committed Sep 12, 2023
1 parent d3b6656 commit ee23fc3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion db/scripts/read/read_functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ def post_processing(functional: list[pd.DataFrame], species: bool):

print_update(update_type="Post processing", text="Functional files", color="red")
ft_nodes = functional[1].filter(items=["id", "name", "category", "proteins"])
ft_nodes = ft_nodes.rename(columns={"id": "Term", "name": "Name", "category": "Category", "proteins": "Proteins"})
ft_nodes = ft_nodes.rename(
columns={"id": "Term", "name": "Name", "category": "Category", "proteins": "Proteins"}
)

ft_protein_df_list = []
ft_gene_df_list = []
Expand Down

0 comments on commit ee23fc3

Please sign in to comment.