Reproduce
The GitHub repository contains the R workflow, dataset documentation, selected outputs, and fitted mixture model artifacts used by BEAR.
Main workflow
main.Ris the high-level entry point for the repository workflow.process/contains dataset-specific processing scripts.workflow/build_bear.Rstitches processed inputs intoBEAR.rds.workflow/fit_mixtures.Rfits the mixture models used in downstream summaries.workflow/calculate_psr.Rcalculates probability of significance, replication, and sign summaries from fitted models, then refreshes the dataset-level mixture plots used by this website.
Data layers
The repository contains code, documentation, and selected outputs. Large combined data artifacts are distributed through GitHub Releases. Individual processed datasets can be fetched through the data submodule when deeper dataset-level work is needed.
Rerunning BEAR
To work only with the combined dataset, download BEAR.rds from GitHub Releases:
curl -L -o BEAR.rds https://github.com/wwiecek/BEAR/releases/download/v2/BEAR.rdsTo work with individual processed datasets, initialize the data submodule:
git submodule update --init --recursiveThis downloads the data/ contents needed for deeper dataset-level work. Dataset-specific processing scripts live in process/. Once processed datasets are present, workflow/build_bear.R stitches BEAR.rds; workflow/fit_mixtures.R fits mixture models in mixtures/; and workflow/calculate_psr.R refreshes the PSR table and website mixture plots.