├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── createPDF.R ├── hidden_createPDF.R ├── sysdata.rda ├── uniqIDHierarchy.R ├── uniqIDMaker.R ├── uniqID_maker_addin.R └── zzz.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── baRcodeR.Rproj ├── codecov.yml ├── cran-comments.md ├── inst ├── WORDLIST └── rstudio │ └── addins.dcf ├── man ├── cheatsheet.Rd ├── create_PDF.Rd ├── custom_create_PDF.Rd ├── figures │ ├── Flowchart.png │ ├── example.png │ └── example_file.pdf ├── make_labels.Rd ├── uniqID_hier_maker.Rd └── uniqID_maker.Rd ├── tests ├── testthat.R └── testthat │ ├── apps │ └── make_labels │ │ ├── app.R │ │ └── tests │ │ ├── hier_labels-current │ │ ├── 001.json │ │ ├── 001.png │ │ ├── 002.json │ │ └── 002.png │ │ ├── hier_labels-expected │ │ ├── 001.json │ │ ├── 001.png │ │ ├── 002.json │ │ └── 002.png │ │ ├── hier_labels.R │ │ ├── labels-current │ │ ├── 001.json │ │ └── 001.png │ │ ├── labels-expected │ │ ├── 001.json │ │ └── 001.png │ │ ├── labels.R │ │ ├── test_bar-current │ │ ├── 001.json │ │ ├── 002.json │ │ ├── 003.json │ │ └── 004.json │ │ ├── test_bar-expected │ │ ├── 001.json │ │ ├── 002.json │ │ ├── 003.json │ │ └── 004.json │ │ ├── test_bar.R │ │ └── test_labels.csv │ ├── test-interactive.R │ ├── test-label_generation.R │ ├── test-pdf_creation.R │ ├── test-test-addin.R │ └── test_warnings.R └── vignettes ├── .gitignore ├── Using-baRcodeR.Rmd ├── add-in-screenshot.png ├── tab-1-screenshot-2.png ├── tab-1-screenshot.png ├── tab-2-screenshot.png ├── tab-3-screenshot-2.png ├── tab-3-screenshot.png └── use-addin.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/createPDF.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/R/createPDF.R -------------------------------------------------------------------------------- /R/hidden_createPDF.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/R/hidden_createPDF.R -------------------------------------------------------------------------------- /R/sysdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/R/sysdata.rda -------------------------------------------------------------------------------- /R/uniqIDHierarchy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/R/uniqIDHierarchy.R -------------------------------------------------------------------------------- /R/uniqIDMaker.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/R/uniqIDMaker.R -------------------------------------------------------------------------------- /R/uniqID_maker_addin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/R/uniqID_maker_addin.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- 1 | destination: docs 2 | 3 | url: https://docs.ropensci.org/baRcodeR -------------------------------------------------------------------------------- /baRcodeR.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/baRcodeR.Rproj -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/cran-comments.md -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /inst/rstudio/addins.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/inst/rstudio/addins.dcf -------------------------------------------------------------------------------- /man/cheatsheet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/man/cheatsheet.Rd -------------------------------------------------------------------------------- /man/create_PDF.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/man/create_PDF.Rd -------------------------------------------------------------------------------- /man/custom_create_PDF.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/man/custom_create_PDF.Rd -------------------------------------------------------------------------------- /man/figures/Flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/man/figures/Flowchart.png -------------------------------------------------------------------------------- /man/figures/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/man/figures/example.png -------------------------------------------------------------------------------- /man/figures/example_file.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/man/figures/example_file.pdf -------------------------------------------------------------------------------- /man/make_labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/man/make_labels.Rd -------------------------------------------------------------------------------- /man/uniqID_hier_maker.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/man/uniqID_hier_maker.Rd -------------------------------------------------------------------------------- /man/uniqID_maker.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/man/uniqID_maker.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/apps/make_labels/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/apps/make_labels/app.R -------------------------------------------------------------------------------- /tests/testthat/apps/make_labels/tests/hier_labels-current/001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/apps/make_labels/tests/hier_labels-current/001.json -------------------------------------------------------------------------------- /tests/testthat/apps/make_labels/tests/hier_labels-current/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/apps/make_labels/tests/hier_labels-current/001.png -------------------------------------------------------------------------------- /tests/testthat/apps/make_labels/tests/hier_labels-current/002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/apps/make_labels/tests/hier_labels-current/002.json -------------------------------------------------------------------------------- /tests/testthat/apps/make_labels/tests/hier_labels-current/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/apps/make_labels/tests/hier_labels-current/002.png -------------------------------------------------------------------------------- /tests/testthat/apps/make_labels/tests/hier_labels-expected/001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/apps/make_labels/tests/hier_labels-expected/001.json -------------------------------------------------------------------------------- /tests/testthat/apps/make_labels/tests/hier_labels-expected/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/apps/make_labels/tests/hier_labels-expected/001.png -------------------------------------------------------------------------------- /tests/testthat/apps/make_labels/tests/hier_labels-expected/002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/apps/make_labels/tests/hier_labels-expected/002.json -------------------------------------------------------------------------------- /tests/testthat/apps/make_labels/tests/hier_labels-expected/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/apps/make_labels/tests/hier_labels-expected/002.png -------------------------------------------------------------------------------- /tests/testthat/apps/make_labels/tests/hier_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/apps/make_labels/tests/hier_labels.R -------------------------------------------------------------------------------- /tests/testthat/apps/make_labels/tests/labels-current/001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/apps/make_labels/tests/labels-current/001.json -------------------------------------------------------------------------------- /tests/testthat/apps/make_labels/tests/labels-current/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/apps/make_labels/tests/labels-current/001.png -------------------------------------------------------------------------------- /tests/testthat/apps/make_labels/tests/labels-expected/001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/apps/make_labels/tests/labels-expected/001.json -------------------------------------------------------------------------------- /tests/testthat/apps/make_labels/tests/labels-expected/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/apps/make_labels/tests/labels-expected/001.png -------------------------------------------------------------------------------- /tests/testthat/apps/make_labels/tests/labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/apps/make_labels/tests/labels.R -------------------------------------------------------------------------------- /tests/testthat/apps/make_labels/tests/test_bar-current/001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/apps/make_labels/tests/test_bar-current/001.json -------------------------------------------------------------------------------- /tests/testthat/apps/make_labels/tests/test_bar-current/002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/apps/make_labels/tests/test_bar-current/002.json -------------------------------------------------------------------------------- /tests/testthat/apps/make_labels/tests/test_bar-current/003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/apps/make_labels/tests/test_bar-current/003.json -------------------------------------------------------------------------------- /tests/testthat/apps/make_labels/tests/test_bar-current/004.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/apps/make_labels/tests/test_bar-current/004.json -------------------------------------------------------------------------------- /tests/testthat/apps/make_labels/tests/test_bar-expected/001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/apps/make_labels/tests/test_bar-expected/001.json -------------------------------------------------------------------------------- /tests/testthat/apps/make_labels/tests/test_bar-expected/002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/apps/make_labels/tests/test_bar-expected/002.json -------------------------------------------------------------------------------- /tests/testthat/apps/make_labels/tests/test_bar-expected/003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/apps/make_labels/tests/test_bar-expected/003.json -------------------------------------------------------------------------------- /tests/testthat/apps/make_labels/tests/test_bar-expected/004.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/apps/make_labels/tests/test_bar-expected/004.json -------------------------------------------------------------------------------- /tests/testthat/apps/make_labels/tests/test_bar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/apps/make_labels/tests/test_bar.R -------------------------------------------------------------------------------- /tests/testthat/apps/make_labels/tests/test_labels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/apps/make_labels/tests/test_labels.csv -------------------------------------------------------------------------------- /tests/testthat/test-interactive.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/test-interactive.R -------------------------------------------------------------------------------- /tests/testthat/test-label_generation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/test-label_generation.R -------------------------------------------------------------------------------- /tests/testthat/test-pdf_creation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/test-pdf_creation.R -------------------------------------------------------------------------------- /tests/testthat/test-test-addin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/test-test-addin.R -------------------------------------------------------------------------------- /tests/testthat/test_warnings.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/tests/testthat/test_warnings.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/Using-baRcodeR.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/vignettes/Using-baRcodeR.Rmd -------------------------------------------------------------------------------- /vignettes/add-in-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/vignettes/add-in-screenshot.png -------------------------------------------------------------------------------- /vignettes/tab-1-screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/vignettes/tab-1-screenshot-2.png -------------------------------------------------------------------------------- /vignettes/tab-1-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/vignettes/tab-1-screenshot.png -------------------------------------------------------------------------------- /vignettes/tab-2-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/vignettes/tab-2-screenshot.png -------------------------------------------------------------------------------- /vignettes/tab-3-screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/vignettes/tab-3-screenshot-2.png -------------------------------------------------------------------------------- /vignettes/tab-3-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/vignettes/tab-3-screenshot.png -------------------------------------------------------------------------------- /vignettes/use-addin.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/baRcodeR/HEAD/vignettes/use-addin.Rmd --------------------------------------------------------------------------------