library(devtools)
devtools:install_github("AbhishakeL/SCoR")
Install FastSpar.
- Create a phyloseq object. Possible examples can be found here or here .
- Use
FSprep()
to create metadata attribute-wise partitioned OTU table. - Write the output of the previous command to a file.
- Run FastSpar on the previous file.
- Use
scor()
to generate the final output. Please follow example for details of parameter. - Visualise network using
igraph
orCytoscape
.
flowchart TD
A[/phyloseq object/] --> B[FSprep]
B --> C[/Filtered OTU table/]
C --> D[FastSpar]
D --> E[/Correlation matrix & p-value matrix/]
E --> F[scor]
C --> F
F --> G[igraph object]
F --> H[Correlation threshold values]
F --> I[Final correlation matrix]