ReUseData: Reusable and Reproducible Data Management (original) (raw)
Introduction
ReUseData is an R/Bioconductor software tool to provide a systematic and versatile approach for standardized and reproducible data management. ReUseData facilitates transformation of shell or other ad hoc scripts for data preprocessing into workflow-based data recipes. Evaluation of data recipes generate curated data files in their generic formats (e.g., VCF, bed). Both recipes and data are cached using database infrastructure for easy data management and reuse. Prebuilt data recipes are available through ReUseData portal (“https://rcwl.org/dataRecipes/”) with full annotation and user instructions. Pregenerated data are available through ReUseData cloud bucket that is directly downloadable through “getCloudData()”.
This quick start shows the basic use of package functions in 2 major categories for managing:
- Data recipes
- Reusable data
Details for each section can be found in the companion vignettes fordata recipes and reusable data.
Package installation and loading
BiocManager::install(c("ReUseData", "Rcwl"))
library(ReUseData)
Data recipes
All pre-built data recipes are included in the package and can be easily updated (recipeUpdate
), searched (recipeSearch
) and loaded (recipeLoad
). Details about data recipes can be found in the vignette ReUseData_recipe.html
.
Search and load a data recipe
recipeUpdate(cachePath = "ReUseDataRecipe", force = TRUE)
#> NOTE: existing caches will be removed and regenerated!
#> Updating recipes...
#> STAR_index.R added
#> bowtie2_index.R added
#> echo_out.R added
#> ensembl_liftover.R added
#> gcp_broad_gatk_hg19.R added
#> gcp_broad_gatk_hg38.R added
#> gcp_gatk_mutect2_b37.R added
#> gcp_gatk_mutect2_hg38.R added
#> gencode_annotation.R added
#> gencode_genome_grch38.R added
#> gencode_transcripts.R added
#> hisat2_index.R added
#> reference_genome.R added
#> salmon_index.R added
#> ucsc_database.R added
#>
#> recipeHub with 15 records
#> cache path: /tmp/RtmpAGHgGP/cache/ReUseDataRecipe
#> # recipeSearch() to query specific recipes using multipe keywords
#> # recipeUpdate() to update the local recipe cache
#>
#> name
#> BFC16 | STAR_index
#> BFC17 | bowtie2_index
#> BFC18 | echo_out
#> BFC19 | ensembl_liftover
#> BFC20 | gcp_broad_gatk_hg19
#> ... ...
#> BFC26 | gencode_transcripts
#> BFC27 | hisat2_index
#> BFC28 | reference_genome
#> BFC29 | salmon_index
#> BFC30 | ucsc_database
recipeSearch("echo")
#> recipeHub with 1 records
#> cache path: /tmp/RtmpAGHgGP/cache/ReUseDataRecipe
#> # recipeSearch() to query specific recipes using multipe keywords
#> # recipeUpdate() to update the local recipe cache
#>
#> name
#> BFC18 | echo_out
echo_out <- recipeLoad("echo_out")
#> Note: you need to assign a name for the recipe: rcpName <- recipeLoad('xx')
#> Data recipe loaded!
#> Use inputs() to check required input parameters before evaluation.
#> Check here: https://rcwl.org/dataRecipes/echo_out.html
#> for user instructions (e.g., eligible input values, data source, etc.)
Evaluate a data recipe
We can install cwltool first to make sure a cwl-runner is available.
invisible(Rcwl::install_cwltool())
A data recipe can be evaluated by assigning values to the recipe parameters. getData
runs the recipe as a CWL scripts internally, and generates the data of interest with annotation files for future reuse.
Rcwl::inputs(echo_out)
#> inputs:
#> input (input) (string):
#> outfile (outfile) (string):
echo_out$input <- "Hello World!"
echo_out$outfile <- "outfile"
outdir <- file.path(tempdir(), "SharedData")
res <- getData(echo_out,
outdir = outdir,
notes = c("echo", "hello", "world", "txt"))
#> }[1;30mINFO[0m Final process status is success
res$out
#> [1] "/tmp/RtmpAGHgGP/SharedData/outfile.txt"
readLines(res$out)
#> [1] "Print the input: Hello World!"
Create your own data recipes
One can create a data recipe from scratch or by converting an existing shell script for data processing, by specifying input parameters, output globbing patterns using recipeMake
function.
script <- system.file("extdata", "echo_out.sh", package = "ReUseData")
rcp <- recipeMake(shscript = script,
paramID = c("input", "outfile"),
paramType = c("string", "string"),
outputID = "echoout",
outputGlob = "*.txt")
Rcwl::inputs(rcp)
#> inputs:
#> input (string):
#> outfile (string):
Rcwl::outputs(rcp)
#> outputs:
#> echoout:
#> type: File[]
#> outputBinding:
#> glob: '*.txt'
The data that are generated from evaluating data recipes are automatically annotated and tracked with user-specified keywords and time/date tags. It uses a similar cache system as for recipes for users to easily update (dataUpdate
), search (dataSearch
) and use (toList
).
Pre-generated data files from existing data recipes are saved in Google Cloud Bucket, that are ready to be queried (dataSearch(cloud=TRUE)
) and downloaded (getCloudData
) to local cache system with annotations.
Update data files that are generated using ReUseData
dh <- dataUpdate(dir = outdir)
dataSearch(c("echo", "hello"))
dataNames(dh)
dataParams(dh)
dataNotes(dh)
Export data into workflow-ready files
toList(dh, format="json", file = file.path(outdir, "data.json"))
Download pregenerated data from Google Cloud
dh <- dataUpdate(dir = outdir, cloud = TRUE)
getCloudData(dh[2], outdir = outdir)
SessionInfo
sessionInfo()
#> R version 4.5.0 RC (2025-04-04 r88126)
#> Platform: x86_64-pc-linux-gnu
#> Running under: Ubuntu 24.04.2 LTS
#>
#> Matrix products: default
#> BLAS: /home/biocbuild/bbs-3.21-bioc/R/lib/libRblas.so
#> LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.12.0 LAPACK version 3.12.0
#>
#> 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
#>
#> time zone: America/New_York
#> tzcode source: system (glibc)
#>
#> attached base packages:
#> [1] stats4 stats graphics grDevices utils datasets methods
#> [8] base
#>
#> other attached packages:
#> [1] ReUseData_1.8.0 Rcwl_1.24.0 S4Vectors_0.46.0
#> [4] BiocGenerics_0.54.0 generics_0.1.3 yaml_2.3.10
#> [7] BiocStyle_2.36.0
#>
#> loaded via a namespace (and not attached):
#> [1] dir.expiry_1.16.0 xfun_0.52 bslib_0.9.0
#> [4] htmlwidgets_1.6.4 visNetwork_2.1.2 lattice_0.22-7
#> [7] batchtools_0.9.17 vctrs_0.6.5 tools_4.5.0
#> [10] curl_6.2.2 base64url_1.4 parallel_4.5.0
#> [13] tibble_3.2.1 RSQLite_2.3.9 blob_1.2.4
#> [16] RcwlPipelines_1.24.0 pkgconfig_2.0.3 R.oo_1.27.0
#> [19] Matrix_1.7-3 data.table_1.17.0 checkmate_2.3.2
#> [22] dbplyr_2.5.0 RColorBrewer_1.1-3 lifecycle_1.0.4
#> [25] git2r_0.36.2 compiler_4.5.0 progress_1.2.3
#> [28] codetools_0.2-20 httpuv_1.6.15 htmltools_0.5.8.1
#> [31] sass_0.4.10 pillar_1.10.2 later_1.4.2
#> [34] crayon_1.5.3 jquerylib_0.1.4 R.utils_2.13.0
#> [37] BiocParallel_1.42.0 cachem_1.1.0 mime_0.13
#> [40] basilisk_1.20.0 brew_1.0-10 tidyselect_1.2.1
#> [43] digest_0.6.37 stringi_1.8.7 purrr_1.0.4
#> [46] dplyr_1.1.4 bookdown_0.43 fastmap_1.2.0
#> [49] grid_4.5.0 cli_3.6.4 magrittr_2.0.3
#> [52] DiagrammeR_1.0.11 withr_3.0.2 prettyunits_1.2.0
#> [55] filelock_1.0.3 promises_1.3.2 backports_1.5.0
#> [58] rappdirs_0.3.3 bit64_4.6.0-1 httr_1.4.7
#> [61] rmarkdown_2.29 bit_4.6.0 reticulate_1.42.0
#> [64] png_0.1-8 R.methodsS3_1.8.2 hms_1.1.3
#> [67] memoise_2.0.1 shiny_1.10.0 evaluate_1.0.3
#> [70] knitr_1.50 basilisk.utils_1.20.0 BiocFileCache_2.16.0
#> [73] rlang_1.1.6 Rcpp_1.0.14 xtable_1.8-4
#> [76] glue_1.8.0 DBI_1.2.3 BiocManager_1.30.25
#> [79] debugme_1.2.0 jsonlite_2.0.0 R6_2.6.1