├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── wos_authenticate.R ├── wos_parse_records.R ├── wos_retrieve.R └── wos_search.R ├── README.md ├── examples.R ├── man ├── wos_authenticate.Rd ├── wos_retrieve.Rd ├── wos_retrieve_page.Rd └── wos_search.Rd ├── notes.Rmd ├── rwos.Rproj └── tests ├── testthat.R └── testthat └── test_lite.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juba/rwos/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juba/rwos/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juba/rwos/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juba/rwos/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/wos_authenticate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juba/rwos/HEAD/R/wos_authenticate.R -------------------------------------------------------------------------------- /R/wos_parse_records.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juba/rwos/HEAD/R/wos_parse_records.R -------------------------------------------------------------------------------- /R/wos_retrieve.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juba/rwos/HEAD/R/wos_retrieve.R -------------------------------------------------------------------------------- /R/wos_search.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juba/rwos/HEAD/R/wos_search.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juba/rwos/HEAD/README.md -------------------------------------------------------------------------------- /examples.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juba/rwos/HEAD/examples.R -------------------------------------------------------------------------------- /man/wos_authenticate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juba/rwos/HEAD/man/wos_authenticate.Rd -------------------------------------------------------------------------------- /man/wos_retrieve.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juba/rwos/HEAD/man/wos_retrieve.Rd -------------------------------------------------------------------------------- /man/wos_retrieve_page.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juba/rwos/HEAD/man/wos_retrieve_page.Rd -------------------------------------------------------------------------------- /man/wos_search.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juba/rwos/HEAD/man/wos_search.Rd -------------------------------------------------------------------------------- /notes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juba/rwos/HEAD/notes.Rmd -------------------------------------------------------------------------------- /rwos.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juba/rwos/HEAD/rwos.Rproj -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juba/rwos/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test_lite.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juba/rwos/HEAD/tests/testthat/test_lite.R --------------------------------------------------------------------------------