Skip to content

Instantly share code, notes, and snippets.

@andremolan
Created October 11, 2018 12:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andremolan/3120cbb2bc428ea8c146db9ba0723b32 to your computer and use it in GitHub Desktop.
Save andremolan/3120cbb2bc428ea8c146db9ba0723b32 to your computer and use it in GitHub Desktop.
Accessing and saving results from GFAGAnalysis function
GenesGFAGs <- ResultAnalysis[[1]]
Comparison_1 <- ResultAnalysis[[2]][1]
Comparison_2 <- ResultAnalysis[[2]][2]
write.table(GenesGFAGs, file = "GenesGFAGs.txt", quote = FALSE, sep = "\t",
row.names = FALSE, col.names = TRUE)
write.table(Comparison_1, file = "Comparison_1.txt", quote = FALSE, sep = "\t",
row.names = FALSE, col.names = TRUE)
write.table(Comparison_2, file = "Comparison_2.txt", quote = FALSE, sep = "\t",
row.names = FALSE, col.names = TRUE)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment