IO Group Data Analysis TheRa.py
Preface
This is a Quarto book containing the code and content for the Data Analysis TheRapy Sesssions with PNNL IO’s group. See the proteomics_therapy
GitHub repo for version control of the project. If permitted, data is stored directly on the Repo, otherwise it’ll be on DMS. This means reproducing certain sections of code will require you to be on the PNNL network.
Help rendering book
Note compiling will only work with .Renviron
DATA_PATH
pointing to the data_tujin_urine_ev
onedrive folder on your local machine; see GitHub readme for details.
- This is a Quarto book; to learn more about Quarto books visit https://quarto.org/docs/books
- Each chapter is it’s own
.qmd
document; make sure to add it to the_quarto.yml
- Put all library calls and functions into
_utils.R
; includesource("_utils.R")
at the beginning of each chapter to make sure all chapters have the same libraries and functions.- this unfortunately means
_utils.R
is called when every chapter is compiled; increasing the time of global rendering.
- this unfortunately means
- To Render the entire book, in the terminal enter: `quarto render
- After you can render individual chapters using the Render button in RStudio.
- Save outputs of longer
r
chunks to save time compiling book. - The outputs are stored in
docs
folder.