HubPub 1.2.5
HubPub
provides users with functionality to help with the Bioconductor Hub
structures. The package provides the ability to create a skeleton of a Hub
style package that the user can then populate with the necessary information.
There are also functions to help add resources to the Hub pacakge metadata
files as well as publish data to the Bioconductor S3 bucket.
Install the most recent version from Bioconductor:
if(!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("HubPub")
Then load HubPub
:
library(HubPub)
The create_pkg()
function creates the skeleton of a package that follows the
guidelines for a Bioconductor Hub type package. More information about what
are the requirements and content for a Hub style package the developer can look
at the “Creating A Hub Package” vignette from this package.
create_pkg()
requires a path to where the packages is to be created and the type
of package that should be created (“AnnotationHub” or “ExperimentHub”). There is
also a variable use_git
that indicates if the package should be set up with
git (default is TRUE
).
NOTE: This function is intended for a developer that has not created the package yet. If the package has already been created, then this function will not benefit the developer. There are a couple other functions in this package that deal with resources that might be helpful, more on these later in the vignette.
fl <- tempdir()
create_pkg(file.path(fl, "examplePkg"), "ExperimentHub")
#> ✔ Creating '/tmp/RtmpXZcyya/examplePkg/'
#> ✔ Setting active project to '/tmp/RtmpXZcyya/examplePkg'
#> ✔ Creating 'R/'
#> ✔ Writing 'DESCRIPTION'
#> Package: examplePkg
#> Title: What the Package Does (One Line, Title Case)
#> Version: 0.99.0
#> Date: 2022-04-10
#> Authors@R (parsed):
#> * First Last <first.last@example.com> [aut, cre] (YOUR-ORCID-ID)
#> Description: What the package does (one paragraph).
#> License: Artistic-2.0
#> BugReports: https://support.bioconductor.org/t/examplePkg
#> Imports:
#> ExperimentHub
#> Suggests:
#> ExperimentHubData
#> Encoding: UTF-8
#> Roxygen: list(markdown = TRUE)
#> RoxygenNote: 7.1.2
#> biocViews: ExperimentHub
#> ✔ Writing 'NAMESPACE'
#> ✔ Setting active project to '<no active project>'
#> ✔ Setting active project to '/tmp/RtmpXZcyya/examplePkg'
#> ✔ Initialising Git repo
#> ✔ Adding '.Rproj.user', '.Rhistory', '.Rdata', '.httr-oauth', '.DS_Store' to '.gitignore'
#> ✔ Writing 'R/examplePkg-package.R'
#> ✔ Writing 'NEWS.md'
#> ✔ Creating 'man/'
#> ✔ Creating 'inst/scripts/'
#> ✔ Writing 'inst/scripts/make-data.R'
#> ✔ Writing 'inst/scripts/make-metadata.R'
#> ✔ Writing 'R/zzz.R'
#> ✔ Creating 'inst/extdata/'
#> ✔ Adding 'testthat' to Suggests field in DESCRIPTION
#> ✔ Setting Config/testthat/edition field in DESCRIPTION to '3'
#> ✔ Creating 'tests/testthat/'
#> ✔ Writing 'tests/testthat.R'
#> • Call `use_test()` to initialize a basic test file and open it for editing.
#> ✔ Writing 'tests/testthat/test_metadata.R'
#> [1] "/tmp/RtmpXZcyya/examplePkg"
Once the package is created the developer can go through and make any changes to the package. For example, the DESCRIPTON file contains very basic requirements but the developer should go back and fill in the ‘Title:’ and ‘Description:’ fields.
Another useful function in HubPub
is add_resource()
. This function can be
useful for developers who are creating a new Hub related package or for
developers who want to add a new resource to an existing Hub package. The
purpose of this function is to add a hub resource to the package metadata.csv
file. The function requires the name of the package (or the path to the newly
created package) and a named list with the data to be added to the resource. To
get the elements and content for this list look at ?hub_metadata
. There is
also information in the “Creating A Hub Package” vignette from this package.
metadata <- hub_metadata(
Title = "ENCODE",
Description = "a test entry",
BiocVersion = "4.1",
Genome = NA_character_,
SourceType = "JSON",
SourceUrl = "http://www.encodeproject.org",
SourceVersion = "x.y.z",
Species = NA_character_,
TaxonomyId = as.integer(9606),
Coordinate_1_based = NA,
DataProvider = "ENCODE Project",
Maintainer = "tst person <tst@email.com>",
RDataClass = "Rda",
DispatchClass = "Rda",
Location_Prefix = "s3://experimenthub/",
RDataPath = "ENCODExplorerData/encode_df_lite.rda",
Tags = "ENCODE:Homo sapiens"
)
add_resource(file.path(fl, "examplePkg"), metadata)
#> [1] "/tmp/RtmpXZcyya/examplePkg/inst/extdata/metadata.csv"
Then if you want to see what the metadata file looks like you can read in the csv file like the following.
resource <- file.path(fl, "examplePkg", "inst", "extdata", "metadata.csv")
tst <- read.csv(resource)
tst
#> Title Description BiocVersion Genome SourceType
#> 1 ENCODE a test entry 4.1 NA JSON
#> SourceUrl SourceVersion Species TaxonomyId
#> 1 http://www.encodeproject.org x.y.z NA 9606
#> Coordinate_1_based DataProvider Maintainer RDataClass
#> 1 NA ENCODE Project tst person <tst@email.com> Rda
#> DispatchClass Location_Prefix RDataPath
#> 1 Rda s3://experimenthub/ ENCODExplorerData/encode_df_lite.rda
#> Tags
#> 1 ENCODE:Homo sapiens
The final function in HubPub
helps the developer with publishing data resources
to an Bioconductor AWS S3. The function utilizes functions for the aws.s3
package to place files or directories on S3. The developer should have already
contacted the Bioconductor hubs maintainers to get the necessary credentials to
access the bucket. Once the credentials are received the developer should
declare them in the system environment before running this function. The
function requires a path to the file or name of the directory to be added to the
bucket and a name for how the object should be named on the bucket. If adding a
directory be sure there are no nested directories and only files.
The below code chunk demonstrates the use of the function using a dummy dataset. It will only work if the necessary global environments have been declared with the hub credentials.
## For publishing directories with multiple files
fl <- tempdir()
utils::write.csv(mtcars, file = file.path(fl, "mtcars1.csv"))
utils::write.csv(mtcars, file = file.path(fl, "mtcars2.csv"))
publish_resource(fl, "test_dir")
#> Warning in publish_resource(fl, "test_dir"): Not all system environment
#> variables are set, do so and rerun function.
#> copy '/tmp/RtmpXZcyya/BiocStyle' to 's3://annotation-contributor/test_dir/BiocStyle'
#> copy '/tmp/RtmpXZcyya/examplePkg' to 's3://annotation-contributor/test_dir/examplePkg'
#> copy '/tmp/RtmpXZcyya/mtcars1.csv' to 's3://annotation-contributor/test_dir/mtcars1.csv'
#> copy '/tmp/RtmpXZcyya/mtcars2.csv' to 's3://annotation-contributor/test_dir/mtcars2.csv'
#> copy '/tmp/RtmpXZcyya/repos_https%3A%2F%2Fbioconductor.org%2Fpackages%2F3.14%2Fbioc%2Fsrc%2Fcontrib.rds' to 's3://annotation-contributor/test_dir/repos_https%3A%2F%2Fbioconductor.org%2Fpackages%2F3.14%2Fbioc%2Fsrc%2Fcontrib.rds'
#> copy '/tmp/RtmpXZcyya/repos_https%3A%2F%2Fbioconductor.org%2Fpackages%2F3.14%2Fbooks%2Fsrc%2Fcontrib.rds' to 's3://annotation-contributor/test_dir/repos_https%3A%2F%2Fbioconductor.org%2Fpackages%2F3.14%2Fbooks%2Fsrc%2Fcontrib.rds'
#> copy '/tmp/RtmpXZcyya/repos_https%3A%2F%2Fbioconductor.org%2Fpackages%2F3.14%2Fdata%2Fannotation%2Fsrc%2Fcontrib.rds' to 's3://annotation-contributor/test_dir/repos_https%3A%2F%2Fbioconductor.org%2Fpackages%2F3.14%2Fdata%2Fannotation%2Fsrc%2Fcontrib.rds'
#> copy '/tmp/RtmpXZcyya/repos_https%3A%2F%2Fbioconductor.org%2Fpackages%2F3.14%2Fdata%2Fexperiment%2Fsrc%2Fcontrib.rds' to 's3://annotation-contributor/test_dir/repos_https%3A%2F%2Fbioconductor.org%2Fpackages%2F3.14%2Fdata%2Fexperiment%2Fsrc%2Fcontrib.rds'
#> copy '/tmp/RtmpXZcyya/repos_https%3A%2F%2Fbioconductor.org%2Fpackages%2F3.14%2Fworkflows%2Fsrc%2Fcontrib.rds' to 's3://annotation-contributor/test_dir/repos_https%3A%2F%2Fbioconductor.org%2Fpackages%2F3.14%2Fworkflows%2Fsrc%2Fcontrib.rds'
#> copy '/tmp/RtmpXZcyya/repos_https%3A%2F%2Fcloud.r-project.org%2Fsrc%2Fcontrib.rds' to 's3://annotation-contributor/test_dir/repos_https%3A%2F%2Fcloud.r-project.org%2Fsrc%2Fcontrib.rds'
#> $`/tmp/RtmpXZcyya/BiocStyle`
#> NULL
#>
#> $`/tmp/RtmpXZcyya/examplePkg`
#> NULL
#>
#> $`/tmp/RtmpXZcyya/mtcars1.csv`
#> NULL
#>
#> $`/tmp/RtmpXZcyya/mtcars2.csv`
#> NULL
#>
#> $`/tmp/RtmpXZcyya/repos_https%3A%2F%2Fbioconductor.org%2Fpackages%2F3.14%2Fbioc%2Fsrc%2Fcontrib.rds`
#> NULL
#>
#> $`/tmp/RtmpXZcyya/repos_https%3A%2F%2Fbioconductor.org%2Fpackages%2F3.14%2Fbooks%2Fsrc%2Fcontrib.rds`
#> NULL
#>
#> $`/tmp/RtmpXZcyya/repos_https%3A%2F%2Fbioconductor.org%2Fpackages%2F3.14%2Fdata%2Fannotation%2Fsrc%2Fcontrib.rds`
#> NULL
#>
#> $`/tmp/RtmpXZcyya/repos_https%3A%2F%2Fbioconductor.org%2Fpackages%2F3.14%2Fdata%2Fexperiment%2Fsrc%2Fcontrib.rds`
#> NULL
#>
#> $`/tmp/RtmpXZcyya/repos_https%3A%2F%2Fbioconductor.org%2Fpackages%2F3.14%2Fworkflows%2Fsrc%2Fcontrib.rds`
#> NULL
#>
#> $`/tmp/RtmpXZcyya/repos_https%3A%2F%2Fcloud.r-project.org%2Fsrc%2Fcontrib.rds`
#> NULL
## For publishing a single file
utils::write.csv(mtcars, file = file.path(fl, "mtcars3.csv"))
publish_resource(file.path(fl, "mtcars3.csv"), "test_dir")
#> Warning in publish_resource(file.path(fl, "mtcars3.csv"), "test_dir"): Not all
#> system environment variables are set, do so and rerun function.
#> copy '/tmp/RtmpXZcyya/mtcars3.csv' to 's3://annotation-contributor/test_dir/mtcars3.csv'
#> $`/tmp/RtmpXZcyya/mtcars3.csv`
#> NULL
sessionInfo()
#> R version 4.1.3 (2022-03-10)
#> Platform: x86_64-pc-linux-gnu (64-bit)
#> Running under: Ubuntu 20.04.4 LTS
#>
#> Matrix products: default
#> BLAS: /home/biocbuild/bbs-3.14-bioc/R/lib/libRblas.so
#> LAPACK: /home/biocbuild/bbs-3.14-bioc/R/lib/libRlapack.so
#>
#> locale:
#> [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
#> [3] LC_TIME=en_GB LC_COLLATE=C
#> [5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
#> [7] LC_PAPER=en_US.UTF-8 LC_NAME=C
#> [9] LC_ADDRESS=C LC_TELEPHONE=C
#> [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C
#>
#> attached base packages:
#> [1] stats graphics grDevices utils datasets methods base
#>
#> other attached packages:
#> [1] futile.logger_1.4.3 HubPub_1.2.5 BiocStyle_2.22.0
#>
#> loaded via a namespace (and not attached):
#> [1] AnnotationHub_3.2.2 BiocFileCache_2.2.1
#> [3] BiocParallel_1.28.3 usethis_2.1.5
#> [5] GenomeInfoDb_1.30.1 digest_0.6.29
#> [7] available_1.0.5 htmltools_0.5.2
#> [9] fansi_1.0.3 magrittr_2.0.3
#> [11] memoise_2.0.1 gert_1.6.0
#> [13] aws.signature_0.6.0 credentials_1.3.2
#> [15] Biostrings_2.62.0 matrixStats_0.61.0
#> [17] R.utils_2.11.0 askpass_1.1
#> [19] prettyunits_1.1.1 blob_1.2.3
#> [21] rappdirs_0.3.3 xfun_0.30
#> [23] dplyr_1.0.8 crayon_1.5.1
#> [25] RCurl_1.98-1.6 jsonlite_1.8.0
#> [27] graph_1.72.0 roxygen2_7.1.2
#> [29] glue_1.6.2 zlibbioc_1.40.0
#> [31] XVector_0.34.0 DelayedArray_0.20.0
#> [33] R.cache_0.15.0 BiocGenerics_0.40.0
#> [35] futile.options_1.0.1 DBI_1.1.2
#> [37] Rcpp_1.0.8.3 xtable_1.8-4
#> [39] progress_1.2.2 bit_4.0.4
#> [41] OrganismDbi_1.36.0 stats4_4.1.3
#> [43] AnnotationForge_1.36.0 getopt_1.20.3
#> [45] httr_1.4.2 ellipsis_0.3.2
#> [47] pkgconfig_2.0.3 XML_3.99-0.9
#> [49] R.methodsS3_1.8.1 sass_0.4.1
#> [51] dbplyr_2.1.1 utf8_1.2.2
#> [53] tidyselect_1.1.2 rlang_1.0.2
#> [55] later_1.3.0 AnnotationDbi_1.56.2
#> [57] biocViews_1.62.1 BiocVersion_3.14.0
#> [59] tools_4.1.3 cachem_1.0.6
#> [61] cli_3.2.0 generics_0.1.2
#> [63] RSQLite_2.2.12 ExperimentHub_2.2.1
#> [65] aws.s3_0.3.21 evaluate_0.15
#> [67] stringr_1.4.0 fastmap_1.1.0
#> [69] AnnotationHubData_1.24.2 yaml_2.3.5
#> [71] sys_3.4 knitr_1.38
#> [73] bit64_4.0.5 fs_1.5.2
#> [75] purrr_0.3.4 KEGGREST_1.34.0
#> [77] RBGL_1.70.0 whisker_0.4
#> [79] mime_0.12 formatR_1.12
#> [81] R.oo_1.24.0 xml2_1.3.3
#> [83] biomaRt_2.50.3 brio_1.1.3
#> [85] compiler_4.1.3 rstudioapi_0.13
#> [87] filelock_1.0.2 curl_4.3.2
#> [89] png_0.1-7 interactiveDisplayBase_1.32.0
#> [91] testthat_3.1.3 biocthis_1.4.0
#> [93] tibble_3.1.6 bslib_0.3.1
#> [95] stringi_1.7.6 GenomicFeatures_1.46.5
#> [97] desc_1.4.1 lattice_0.20-45
#> [99] Matrix_1.4-1 styler_1.7.0
#> [101] vctrs_0.4.0 stringdist_0.9.8
#> [103] BiocCheck_1.30.0 pillar_1.7.0
#> [105] lifecycle_1.0.1 optparse_1.7.1
#> [107] RUnit_0.4.32 BiocManager_1.30.16
#> [109] jquerylib_0.1.4 bitops_1.0-7
#> [111] httpuv_1.6.5 rtracklayer_1.54.0
#> [113] GenomicRanges_1.46.1 R6_2.5.1
#> [115] BiocIO_1.4.0 bookdown_0.25
#> [117] promises_1.2.0.1 IRanges_2.28.0
#> [119] codetools_0.2-18 lambda.r_1.2.4
#> [121] assertthat_0.2.1 SummarizedExperiment_1.24.0
#> [123] openssl_2.0.0 rprojroot_2.0.3
#> [125] rjson_0.2.21 withr_2.5.0
#> [127] GenomicAlignments_1.30.0 Rsamtools_2.10.0
#> [129] S4Vectors_0.32.4 GenomeInfoDbData_1.2.7
#> [131] parallel_4.1.3 hms_1.1.1
#> [133] grid_4.1.3 rmarkdown_2.13
#> [135] MatrixGenerics_1.6.0 Biobase_2.54.0
#> [137] shiny_1.7.1 base64enc_0.1-3
#> [139] ExperimentHubData_1.20.1 restfulr_0.0.13