Closed choijamtsmunkhzul closed 4 years ago
It is possible to modify the output of run_pathfindR()
and perform downstream analyses. However, it's better to just subset the data frame (in your case, example_pathfindR_output
) within R.
The issue is most probably as follows: As you save with row names (numbers, by default), you may be adding an additional column erroneously while reading. To fix this, modify the read command as follows:
aa1 <-read.csv(file="example_pathfindR.csv", header=TRUE, row.names = TRUE)
Hello, thanks for this nice package, However I got into some problem. Here is the steps:
First here is the input file:
Then I run runpathfindR()
write.csv(example_pathfindR_output, "example_pathfindR.csv")
Then from .csv file I REMOVED some pathways and try to put into enrichment_chart()
Finally I got these ERRORs:
Error in strsplit(x, ", ") : non-character argument
Is it even possible to modify output of pathfindR pathways and visualize with enrichment_chart()?
Thank you so much