The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
Analysis of Microbial Social Behavior in Bacterial Consortia
bsocialv2 provides an S4 class and methods for analyzing
microbial social behavior in bacterial consortia. The package implements
a complete analysis pipeline:
# Install from GitHub
remotes::install_github("Juane99/bsocialv2")
# Or install from CRAN (once accepted)
# install.packages("bsocialv2")library(bsocialv2)
# Create a bsocial object
obj <- new("bsocial")
# Load your data
consortia <- read.csv("consortia.csv")
curated <- read.csv("curated_data.csv")
obj@cepas_seleccionadas <- setdiff(colnames(consortia), "Consortia")
obj@datos_crudos <- list(
consortia = consortia,
curated = curated,
type = "curated"
)
# Run the analysis pipeline
obj <- transform_curated_data(obj)
obj <- analyze_growth(obj)
obj <- analyze_social_behavior(obj)
obj <- summarize_social_behavior(obj)
obj <- analyze_diversity(obj)
obj <- analyze_stability(obj)
obj <- analyze_biofilm_sequence(obj)
# Access results
obj@graficos$growth_scatter
obj@resultados_analisis$summary_genSee vignette("bsocial-workflow") for a complete
tutorial.
MIT
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.