-
I'm using the pathfindR package to perform PSEA on a set of DE proteins from a proteomics experiment. If I understand the package correctly one of the outputs should be a dataframe which I have called PSEA_results. When I run the package that dataframe doesn't get created and I get the following error message.
This is a new one on me. My code is below.
The data frame PSEA_rd has over 1000 lines in it so I don't propose to reproduce it here. However, just so people can see the types of data it contains the output from str(PSEA_rd) is below.
I did try one other thing. I ran
The result was the same error message which hopefully rules out that the issue is caused by the directory structure I want to store the data in. Thanks in advance for any suggestions.. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Do you mind sharing the R console output, including the error line? PSEA_results <- run_pathfindR(input = PSEA_rd, visualize_enriched_terms = FALSE, plot_enrichment_chart = FALSE)
Let me know if running the command above works. If not, please share the console output. |
Beta Was this translation helpful? Give feedback.
Do you mind sharing the R console output, including the error line?
This is curious because pathfindR does not contain the line that you shared as the error code.
If visualization is not immediately necessary and your aim is to have enrichment results, I would try:
visualize_enriched_terms = TRUE
saves (by default) annotated KEGG diagrams andplot_enrichment_chart = TRUE
produces a graphical summary of enrichment results. Both can be created separately.Let me know if running the command above works. If not, please share the console output.