ReUseData provides functionalities to construct workflow-based data recipes for fully tracked and reproducible data processing. Evaluation of data recipes generates curated data resources in their generic formats (e.g., VCF, bed), as well as a YAML manifest file recording the recipe parameters, data annotations, and data file paths for subsequent reuse. The datasets are locally cached using a database infrastructure, where updating and searching of specific data is made easy.

The data reusability is assured through cloud hosting and enhanced interoperability with downstream software tools or analysis workflows. The workflow strategy enables cross platform reproducibility of curated data resources.

1 Installation

  1. Install the package from Bioconductor.
if (!requireNamespace("BiocManager", quietly = TRUE))
    install.packages("BiocManager")
BiocManager::install("ReUseData")

Use the development version:

BiocManager::install("ReUseData", version = "devel")
  1. Load the package and other packages used in this vignette into the R session.
suppressPackageStartupMessages(library(Rcwl))
library(ReUseData)

2 ReUseData core functions for data management

Here we introduce the core functions of ReUseData for data management and reuse: getData for reproducible data generation, dataUpdate for syncing and updating data cache, and dataSearch for multi-keywords searching of dataset of interest.

2.1 Data generation

First, we can construct data recipes by transforming shell or other ad hoc data preprocessing scripts into workflow-based data recipes. Some prebuilt data recipes for public data resources (e.g., downloading, unzipping and indexing) are available for direct use through recipeSearch and recipeLoad functions. Then we will assign values to the input parameters and evaluate the recipe to generate data of interest.

## set cache in tempdir for test
Sys.setenv(cachePath = file.path(tempdir(), "cache"))

recipeUpdate()
#> 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/RtmpgEiA85/cache/ReUseDataRecipe 
#> # recipeSearch() to query specific recipes using multipe keywords
#> # recipeUpdate() to update the local recipe cache
#> 
#>           name               
#>   BFC1  | STAR_index         
#>   BFC2  | bowtie2_index      
#>   BFC3  | echo_out           
#>   BFC4  | ensembl_liftover   
#>   BFC5  | gcp_broad_gatk_hg19
#>   ...     ...                
#>   BFC11 | gencode_transcripts
#>   BFC12 | hisat2_index       
#>   BFC13 | reference_genome   
#>   BFC14 | salmon_index       
#>   BFC15 | ucsc_database
recipeSearch("echo")
#> recipeHub with 1 records
#> cache path:  /tmp/RtmpgEiA85/cache/ReUseDataRecipe 
#> # recipeSearch() to query specific recipes using multipe keywords
#> # recipeUpdate() to update the local recipe cache
#> 
#>          name    
#>   BFC3 | 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.)
inputs(echo_out)
#> inputs:
#>   input (input)  (string):  
#>   outfile (outfile)  (string):

Users can then assign values to the input parameters, and evaluate the recipe (getData) to generate data of interest. Users need to specify an output directory for all files (desired data file, intermediate files that are internally generated as workflow scripts or annotation files). Detailed notes for the data is encouraged which will be used for keywords matching for later data search.

We can install cwltool first to make sure a cwl-runner is available.

invisible(Rcwl::install_cwltool())
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"))
#> }INFO Final process status is success

The file path to newly generated dataset can be easily retrieved. It can also be retrieved using dataSearch() functions with multiple keywords. Before that, dataUpdate() needs to be done.

res$output
#> [1] "/tmp/RtmpgEiA85/SharedData/outfile.txt"

There are some automatically generated files to help track the data recipe evaluation, including *.sh to record the original shell script, *.cwl file as the official workflow script which was internally submitted for data recipe evaluation, *.yml file as part of CWL workflow evaluation, which also record data annotations, and *.md5 checksum file to check/verify the integrity of generated data file.

list.files(outdir, pattern = "echo")
#> [1] "echo_out_Hello_World!_outfile.cwl" "echo_out_Hello_World!_outfile.md5"
#> [3] "echo_out_Hello_World!_outfile.sh"  "echo_out_Hello_World!_outfile.yml"

The *.yml file contains information about recipe input parameters, the file path to output file, the notes for the dataset, and auto-added date for data generation time. A later data search using dataSearch() will refer to this file for keywords match.

readLines(res$yml)
#> [1] "input: Hello World!"                             
#> [2] "outfile: outfile"                                
#> [3] "# output: /tmp/RtmpgEiA85/SharedData/outfile.txt"
#> [4] "# notes: echo hello world txt"                   
#> [5] "# date: 2023-12-10 18:56:16.057382"

2.2 Data caching, updating and searching

dataUpdate() creates (if first time use), syncs and updates the local cache for curated datasets. It finds and reads all the .yml files recursively in the provided data folder, creates a cache record for each dataset that is associated (including newly generated ones with getData()), and updates the local cache for later data searching and reuse.

IMPORTANT: It is recommended that users create a specified folder for data archival (e.g., file/path/to/SharedData) that other group members have access to, and use sub-folders for different kinds of datasets (e.g., those generated from same recipe).

(dh <- dataUpdate(dir = outdir))
#> 
#> Updating data record...
#> outfile.txt added
#> dataHub with 1 records
#> cache path:  /tmp/RtmpgEiA85/cache/ReUseData 
#> # dataUpdate() to update the local data cache
#> # dataSearch() to query a specific dataset
#> # Additional information can be retrieved using: 
#> # dataNames(), dataParams(), dataNotes(), dataPaths(), dataTag() or mcols()
#> 
#>          name        Path                                  
#>   BFC1 | outfile.txt /tmp/RtmpgEiA85/SharedData/outfile.txt

dataUpdate and dataSearch return a dataHub object with a list of all available or matching datasets.

One can subset the list with [ and use getter functions to retrieve the annotation information about the data, e.g., data names, parameters values to the recipe, notes, tags, and the corresponding yaml file.

dh[1]
#> dataHub with 1 records
#> cache path:  /tmp/RtmpgEiA85/cache/ReUseData 
#> # dataUpdate() to update the local data cache
#> # dataSearch() to query a specific dataset
#> # Additional information can be retrieved using: 
#> # dataNames(), dataParams(), dataNotes(), dataPaths(), dataTag() or mcols()
#> 
#>          name        Path                                  
#>   BFC1 | outfile.txt /tmp/RtmpgEiA85/SharedData/outfile.txt
## dh["BFC1"]
dh[dataNames(dh) == "outfile.txt"]
#> dataHub with 1 records
#> cache path:  /tmp/RtmpgEiA85/cache/ReUseData 
#> # dataUpdate() to update the local data cache
#> # dataSearch() to query a specific dataset
#> # Additional information can be retrieved using: 
#> # dataNames(), dataParams(), dataNotes(), dataPaths(), dataTag() or mcols()
#> 
#>          name        Path                                  
#>   BFC1 | outfile.txt /tmp/RtmpgEiA85/SharedData/outfile.txt
dataNames(dh)
#> [1] "outfile.txt"
dataParams(dh)
#> [1] "input: Hello World!; outfile: outfile"
dataNotes(dh)
#> [1] "echo hello world txt"
dataTags(dh)
#> [1] ""
dataYml(dh)
#> [1] "/tmp/RtmpgEiA85/SharedData/echo_out_Hello_World!_outfile.yml"

ReUseData, as the name suggests, commits to promoting the data reuse. Data can be prepared in standard input formats (toList), e.g., YAML and JSON, to be easily integrated in workflow methods that are locally or cloud-hosted.

(dh1 <- dataSearch(c("echo", "hello", "world")))
#> dataHub with 1 records
#> cache path:  /tmp/RtmpgEiA85/cache/ReUseData 
#> # dataUpdate() to update the local data cache
#> # dataSearch() to query a specific dataset
#> # Additional information can be retrieved using: 
#> # dataNames(), dataParams(), dataNotes(), dataPaths(), dataTag() or mcols()
#> 
#>          name        Path                                  
#>   BFC1 | outfile.txt /tmp/RtmpgEiA85/SharedData/outfile.txt
toList(dh1, listNames = c("input_file"))
#> $input_file
#> [1] "/tmp/RtmpgEiA85/SharedData/outfile.txt"
toList(dh1, format = "yaml", listNames = c("input_file"))
#> [1] "input_file: /tmp/RtmpgEiA85/SharedData/outfile.txt"
toList(dh1, format = "json", file = file.path(tempdir(), "data.json"))
#> File is saved as: "/tmp/RtmpgEiA85/data.json"
#> {
#>   "outfile.txt": "/tmp/RtmpgEiA85/SharedData/outfile.txt"
#> }

Data can also be aggregated from different resources by tagging with specific software tools.

dataSearch()
#> dataHub with 1 records
#> cache path:  /tmp/RtmpgEiA85/cache/ReUseData 
#> # dataUpdate() to update the local data cache
#> # dataSearch() to query a specific dataset
#> # Additional information can be retrieved using: 
#> # dataNames(), dataParams(), dataNotes(), dataPaths(), dataTag() or mcols()
#> 
#>          name        Path                                  
#>   BFC1 | outfile.txt /tmp/RtmpgEiA85/SharedData/outfile.txt
dataTags(dh[1]) <- "#gatk"
dataSearch("#gatk")
#> dataHub with 1 records
#> cache path:  /tmp/RtmpgEiA85/cache/ReUseData 
#> # dataUpdate() to update the local data cache
#> # dataSearch() to query a specific dataset
#> # Additional information can be retrieved using: 
#> # dataNames(), dataParams(), dataNotes(), dataPaths(), dataTag() or mcols()
#> 
#>          name        Path                                  
#>   BFC1 | outfile.txt /tmp/RtmpgEiA85/SharedData/outfile.txt

2.3 Existing data annotation

The package can also be used to add annotation and notes to existing data resources or experiment data for management. Here we add exisiting “exp_data” to local data repository.

exp_data <- file.path(tempdir(), "exp_data")
dir.create(exp_data)

We first add notes to the data, and then update data repository with information from the new dataset.

annData(exp_data, notes = c("experiment data"))
#> meta.yml added
#> [1] "/tmp/RtmpgEiA85/exp_data/meta.yml"
dataUpdate(exp_data)
#> 
#> Updating data record...
#> exp_data added
#> dataHub with 2 records
#> cache path:  /tmp/RtmpgEiA85/cache/ReUseData 
#> # dataUpdate() to update the local data cache
#> # dataSearch() to query a specific dataset
#> # Additional information can be retrieved using: 
#> # dataNames(), dataParams(), dataNotes(), dataPaths(), dataTag() or mcols()
#> 
#>          name        Path                                  
#>   BFC1 | outfile.txt /tmp/RtmpgEiA85/SharedData/outfile.txt
#>   BFC2 | exp_data    /tmp/RtmpgEiA85/exp_data

Now our data hub cached meta information from two different directories, one from data recipe and one from exisiting data. Data can be retrieved by keywords.

dataSearch("experiment")
#> dataHub with 1 records
#> cache path:  /tmp/RtmpgEiA85/cache/ReUseData 
#> # dataUpdate() to update the local data cache
#> # dataSearch() to query a specific dataset
#> # Additional information can be retrieved using: 
#> # dataNames(), dataParams(), dataNotes(), dataPaths(), dataTag() or mcols()
#> 
#>          name     Path                    
#>   BFC2 | exp_data /tmp/RtmpgEiA85/exp_data

NOTE: if the argument cloud=TRUE is enabled, dataUpdate() will also cache the pregenerated data sets (from evaluation of public ReUseData recipes) that are available on ReUseData google bucket and return in the dataHub object that are fully searchable. Please see the following section for details.

3 Cloud data resources

With the prebuilt data recipes for curation (e.g., downloading, unzipping, indexing) of commonly used public data resources we have pregenerated some data sets and put them on the cloud space for direct use.

Before searching, one need to use dataUpdate(cloud=TRUE) to sync the existing data sets on cloud, then dataSearch() can be used to search any available data set either in local cache and on the cloud.

gcpdir <- file.path(tempdir(), "gcpData")
dataUpdate(gcpdir, cloud=TRUE)
#> 
#> Updating data record...
#> 32cf63da147b8_GRCh38.primary_assembly.genome.fa.1.bt2 added
#> 32cf66d144ab2_GRCh38.primary_assembly.genome.fa.2.bt2 added
#> 32cf66994d409_GRCh38.primary_assembly.genome.fa.3.bt2 added
#> 32cf67e4057b7_GRCh38.primary_assembly.genome.fa.4.bt2 added
#> 32cf6b5b15b7_GRCh38.primary_assembly.genome.fa.rev.1.bt2 added
#> 32cf67fcda9fa_GRCh38.primary_assembly.genome.fa.rev.2.bt2 added
#> 32cf66b29cbcb_outfile.txt added
#> 32cf66d661625_GRCh37_to_GRCh38.chain added
#> 32cf63e06a455_GRCh37_to_NCBI34.chain added
#> 32cf6563863ee_GRCh37_to_NCBI35.chain added
#> 32cf62912a233_GRCh37_to_NCBI36.chain added
#> 32cf67609278b_GRCh38_to_GRCh37.chain added
#> 32cf6aa32d26_GRCh38_to_NCBI34.chain added
#> 32cf625068f36_GRCh38_to_NCBI35.chain added
#> 32cf6524aae2f_GRCh38_to_NCBI36.chain added
#> 32cf62a0f5097_NCBI34_to_GRCh37.chain added
#> 32cf621848082_NCBI34_to_GRCh38.chain added
#> 32cf65029d237_NCBI35_to_GRCh37.chain added
#> 32cf6334d5435_NCBI35_to_GRCh38.chain added
#> 32cf63ee8df80_NCBI36_to_GRCh37.chain added
#> 32cf61c9d99f3_NCBI36_to_GRCh38.chain added
#> 32cf62b892061_GRCm38_to_NCBIM36.chain added
#> 32cf656bb3614_GRCm38_to_NCBIM37.chain added
#> 32cf612409eb5_NCBIM36_to_GRCm38.chain added
#> 32cf61bf38b19_NCBIM37_to_GRCm38.chain added
#> 32cf65be86514_1000G_omni2.5.b37.vcf.gz added
#> 32cf65d76decc_1000G_omni2.5.b37.vcf.gz.tbi added
#> 32cf65ffe7cf1_Mills_and_1000G_gold_standard.indels.b37.vcf.gz added
#> 32cf65aa84cca_Mills_and_1000G_gold_standard.indels.b37.vcf.gz.tbi added
#> 32cf61c2e1d63_1000G_omni2.5.hg38.vcf.gz added
#> 32cf67c8a354d_1000G_omni2.5.hg38.vcf.gz.tbi added
#> 32cf618499482_Mills_and_1000G_gold_standard.indels.hg38.vcf.gz added
#> 32cf69426815_Mills_and_1000G_gold_standard.indels.hg38.vcf.gz.tbi added
#> 32cf6661f0957_af-only-gnomad.raw.sites.vcf added
#> 32cf61689ec39_af-only-gnomad.raw.sites.vcf.idx added
#> 32cf6149d7dcd_Mutect2-exome-panel.vcf.idx added
#> 32cf665ecb351_Mutect2-WGS-panel-b37.vcf added
#> 32cf61b3b804_Mutect2-WGS-panel-b37.vcf.idx added
#> 32cf620393f2_small_exac_common_3.vcf added
#> 32cf623f357a6_small_exac_common_3.vcf.idx added
#> 32cf657ec1bf3_1000g_pon.hg38.vcf.gz added
#> 32cf62b163626_1000g_pon.hg38.vcf.gz.tbi added
#> 32cf619fc7f31_af-only-gnomad.hg38.vcf.gz added
#> 32cf6628f4919_af-only-gnomad.hg38.vcf.gz.tbi added
#> 32cf6501cc55c_small_exac_common_3.hg38.vcf.gz added
#> 32cf66c472d61_small_exac_common_3.hg38.vcf.gz.tbi added
#> 32cf6c9e99b0_gencode.v41.annotation.gtf added
#> 32cf671a145de_gencode.v42.annotation.gtf added
#> 32cf63c70ff98_gencode.vM30.annotation.gtf added
#> 32cf63febede6_gencode.vM31.annotation.gtf added
#> 32cf6308a255f_gencode.v41.transcripts.fa added
#> 32cf6590e998c_gencode.v41.transcripts.fa.fai added
#> 32cf66b750e47_gencode.v42.transcripts.fa added
#> 32cf67455b73_gencode.v42.transcripts.fa.fai added
#> 32cf66b4f3841_gencode.vM30.pc_transcripts.fa added
#> 32cf67689960_gencode.vM30.pc_transcripts.fa.fai added
#> 32cf6632dc088_gencode.vM31.pc_transcripts.fa added
#> 32cf648c6170d_gencode.vM31.pc_transcripts.fa.fai added
#> 32cf667671651_GRCh38.primary_assembly.genome.fa.1.ht2 added
#> 32cf63dd60d52_GRCh38.primary_assembly.genome.fa.2.ht2 added
#> 32cf664f43470_GRCh38.primary_assembly.genome.fa.3.ht2 added
#> 32cf663f14b9f_GRCh38.primary_assembly.genome.fa.4.ht2 added
#> 32cf6561fa1d4_GRCh38.primary_assembly.genome.fa.5.ht2 added
#> 32cf66e369c85_GRCh38.primary_assembly.genome.fa.6.ht2 added
#> 32cf64a1054f6_GRCh38.primary_assembly.genome.fa.7.ht2 added
#> 32cf66ca98e0e_GRCh38.primary_assembly.genome.fa.8.ht2 added
#> 32cf62d41a52_GRCh38_full_analysis_set_plus_decoy_hla.fa.fai added
#> 32cf62ffd0847_GRCh38_full_analysis_set_plus_decoy_hla.fa.amb added
#> 32cf66e5d4612_GRCh38_full_analysis_set_plus_decoy_hla.fa.ann added
#> 32cf64d7ae45_GRCh38_full_analysis_set_plus_decoy_hla.fa.bwt added
#> 32cf653f05fed_GRCh38_full_analysis_set_plus_decoy_hla.fa.pac added
#> 32cf646496205_GRCh38_full_analysis_set_plus_decoy_hla.fa.sa added
#> 32cf62fede46b_GRCh38_full_analysis_set_plus_decoy_hla.fa added
#> 32cf66decdf1f_GRCh38.primary_assembly.genome.fa.fai added
#> 32cf628d8ab1f_GRCh38.primary_assembly.genome.fa.amb added
#> 32cf6aa9c7_GRCh38.primary_assembly.genome.fa.ann added
#> 32cf65a340c80_GRCh38.primary_assembly.genome.fa.bwt added
#> 32cf6357744cf_GRCh38.primary_assembly.genome.fa.pac added
#> 32cf671abefa6_GRCh38.primary_assembly.genome.fa.sa added
#> 32cf616a50c18_GRCh38.primary_assembly.genome.fa added
#> 32cf6756332b5_hs37d5.fa.fai added
#> 32cf622361505_hs37d5.fa.amb added
#> 32cf66fb3a5a4_hs37d5.fa.ann added
#> 32cf660d840fc_hs37d5.fa.bwt added
#> 32cf6297b7078_hs37d5.fa.pac added
#> 32cf65b02dde5_hs37d5.fa.sa added
#> 32cf66840da5c_hs37d5.fa added
#> 32cf6ca93100_complete_ref_lens.bin added
#> 32cf623c8f4f2_ctable.bin added
#> 32cf64fa7f0ae_ctg_offsets.bin added
#> 32cf64a7f3e52_duplicate_clusters.tsv added
#> 32cf68bd2962_info.json added
#> 32cf633993c4d_mphf.bin added
#> 32cf6209ee027_pos.bin added
#> 32cf676f3c5e8_pre_indexing.log added
#> 32cf67da99143_rank.bin added
#> 32cf6d486e35_ref_indexing.log added
#> 32cf679c7e03a_refAccumLengths.bin added
#> 32cf62da6998a_reflengths.bin added
#> 32cf67ba5b447_refseq.bin added
#> 32cf67e9f8e7f_seq.bin added
#> 32cf6196f977_versionInfo.json added
#> 32cf641ef164d_salmon_index added
#> 32cf62e8d72ea_chrLength.txt added
#> 32cf66f83d896_chrName.txt added
#> 32cf66ac7c16c_chrNameLength.txt added
#> 32cf62e981cb2_chrStart.txt added
#> 32cf649b7e516_exonGeTrInfo.tab added
#> 32cf6203f063b_exonInfo.tab added
#> 32cf620440c58_geneInfo.tab added
#> 32cf6605cf12f_Genome added
#> 32cf615a238f1_genomeParameters.txt added
#> 32cf6427a215d_Log.out added
#> 32cf6501096d3_SA added
#> 32cf6767a79ed_SAindex added
#> 32cf66bf591d5_sjdbInfo.txt added
#> 32cf62b1374b9_sjdbList.fromGTF.out.tab added
#> 32cf65ebb544a_sjdbList.out.tab added
#> 32cf6789ec2d6_transcriptInfo.tab added
#> 32cf64edc69ab_GRCh38.GENCODE.v42_100 added
#> 32cf62e6344f8_knownGene_hg38.sql added
#> 32cf6431e0128_knownGene_hg38.txt added
#> 32cf65799930e_refGene_hg38.sql added
#> 32cf661fc8145_refGene_hg38.txt added
#> 32cf663bce14f_knownGene_mm39.sql added
#> 32cf64e8d58f6_knownGene_mm39.txt added
#> 32cf65fa61288_refGene_mm39.sql added
#> 32cf671054f84_refGene_mm39.txt added
#> dataHub with 130 records
#> cache path:  /tmp/RtmpgEiA85/cache/ReUseData 
#> # dataUpdate() to update the local data cache
#> # dataSearch() to query a specific dataset
#> # Additional information can be retrieved using: 
#> # dataNames(), dataParams(), dataNotes(), dataPaths(), dataTag() or mcols()
#> 
#>            name                                   
#>   BFC1   | outfile.txt                            
#>   BFC2   | exp_data                               
#>   BFC3   | GRCh38.primary_assembly.genome.fa.1.bt2
#>   BFC4   | GRCh38.primary_assembly.genome.fa.2.bt2
#>   BFC5   | GRCh38.primary_assembly.genome.fa.3.bt2
#>   ...      ...                                    
#>   BFC126 | refGene_hg38.txt                       
#>   BFC127 | knownGene_mm39.sql                     
#>   BFC128 | knownGene_mm39.txt                     
#>   BFC129 | refGene_mm39.sql                       
#>   BFC130 | refGene_mm39.txt                       
#>          Path                                                               
#>   BFC1   /tmp/RtmpgEiA85/SharedData/outfile.txt                             
#>   BFC2   /tmp/RtmpgEiA85/exp_data                                           
#>   BFC3   https://storage.googleapis.com/reusedata/bowtie2_index/GRCh38.pr...
#>   BFC4   https://storage.googleapis.com/reusedata/bowtie2_index/GRCh38.pr...
#>   BFC5   https://storage.googleapis.com/reusedata/bowtie2_index/GRCh38.pr...
#>   ...    ...                                                                
#>   BFC126 https://storage.googleapis.com/reusedata/ucsc_database/refGene_h...
#>   BFC127 https://storage.googleapis.com/reusedata/ucsc_database/knownGene...
#>   BFC128 https://storage.googleapis.com/reusedata/ucsc_database/knownGene...
#>   BFC129 https://storage.googleapis.com/reusedata/ucsc_database/refGene_m...
#>   BFC130 https://storage.googleapis.com/reusedata/ucsc_database/refGene_m...

If the data of interest already exist on the cloud, then getCloudData will directly download the data to your computer. Add it to the local caching system using dataUpdate() for later use.

(dh <- dataSearch(c("ensembl", "GRCh38")))
#> dataHub with 8 records
#> cache path:  /tmp/RtmpgEiA85/cache/ReUseData 
#> # dataUpdate() to update the local data cache
#> # dataSearch() to query a specific dataset
#> # Additional information can be retrieved using: 
#> # dataNames(), dataParams(), dataNotes(), dataPaths(), dataTag() or mcols()
#> 
#>           name                  
#>   BFC10 | GRCh37_to_GRCh38.chain
#>   BFC14 | GRCh38_to_GRCh37.chain
#>   BFC15 | GRCh38_to_NCBI34.chain
#>   BFC16 | GRCh38_to_NCBI35.chain
#>   BFC17 | GRCh38_to_NCBI36.chain
#>   BFC19 | NCBI34_to_GRCh38.chain
#>   BFC21 | NCBI35_to_GRCh38.chain
#>   BFC23 | NCBI36_to_GRCh38.chain
#>         Path                                                               
#>   BFC10 https://storage.googleapis.com/reusedata/ensembl_liftover/GRCh37...
#>   BFC14 https://storage.googleapis.com/reusedata/ensembl_liftover/GRCh38...
#>   BFC15 https://storage.googleapis.com/reusedata/ensembl_liftover/GRCh38...
#>   BFC16 https://storage.googleapis.com/reusedata/ensembl_liftover/GRCh38...
#>   BFC17 https://storage.googleapis.com/reusedata/ensembl_liftover/GRCh38...
#>   BFC19 https://storage.googleapis.com/reusedata/ensembl_liftover/NCBI34...
#>   BFC21 https://storage.googleapis.com/reusedata/ensembl_liftover/NCBI35...
#>   BFC23 https://storage.googleapis.com/reusedata/ensembl_liftover/NCBI36...
getCloudData(dh[1], outdir = gcpdir)
#> Data is downloaded: 
#> /tmp/RtmpgEiA85/gcpData/GRCh37_to_GRCh38.chain

Now we create the data cache with only local data files, and we can see that the downloaded data is available.

dataUpdate(gcpdir)  ## Update local data cache (without cloud data)
#> 
#> Updating data record...
#> GRCh37_to_GRCh38.chain added
#> dataHub with 131 records
#> cache path:  /tmp/RtmpgEiA85/cache/ReUseData 
#> # dataUpdate() to update the local data cache
#> # dataSearch() to query a specific dataset
#> # Additional information can be retrieved using: 
#> # dataNames(), dataParams(), dataNotes(), dataPaths(), dataTag() or mcols()
#> 
#>            name                                   
#>   BFC1   | outfile.txt                            
#>   BFC2   | exp_data                               
#>   BFC3   | GRCh38.primary_assembly.genome.fa.1.bt2
#>   BFC4   | GRCh38.primary_assembly.genome.fa.2.bt2
#>   BFC5   | GRCh38.primary_assembly.genome.fa.3.bt2
#>   ...      ...                                    
#>   BFC127 | knownGene_mm39.sql                     
#>   BFC128 | knownGene_mm39.txt                     
#>   BFC129 | refGene_mm39.sql                       
#>   BFC130 | refGene_mm39.txt                       
#>   BFC131 | GRCh37_to_GRCh38.chain                 
#>          Path                                                               
#>   BFC1   /tmp/RtmpgEiA85/SharedData/outfile.txt                             
#>   BFC2   /tmp/RtmpgEiA85/exp_data                                           
#>   BFC3   https://storage.googleapis.com/reusedata/bowtie2_index/GRCh38.pr...
#>   BFC4   https://storage.googleapis.com/reusedata/bowtie2_index/GRCh38.pr...
#>   BFC5   https://storage.googleapis.com/reusedata/bowtie2_index/GRCh38.pr...
#>   ...    ...                                                                
#>   BFC127 https://storage.googleapis.com/reusedata/ucsc_database/knownGene...
#>   BFC128 https://storage.googleapis.com/reusedata/ucsc_database/knownGene...
#>   BFC129 https://storage.googleapis.com/reusedata/ucsc_database/refGene_m...
#>   BFC130 https://storage.googleapis.com/reusedata/ucsc_database/refGene_m...
#>   BFC131 /tmp/RtmpgEiA85/gcpData/GRCh37_to_GRCh38.chain
dataSearch()  ## data is available locally!!!
#> dataHub with 131 records
#> cache path:  /tmp/RtmpgEiA85/cache/ReUseData 
#> # dataUpdate() to update the local data cache
#> # dataSearch() to query a specific dataset
#> # Additional information can be retrieved using: 
#> # dataNames(), dataParams(), dataNotes(), dataPaths(), dataTag() or mcols()
#> 
#>            name                                   
#>   BFC1   | outfile.txt                            
#>   BFC2   | exp_data                               
#>   BFC3   | GRCh38.primary_assembly.genome.fa.1.bt2
#>   BFC4   | GRCh38.primary_assembly.genome.fa.2.bt2
#>   BFC5   | GRCh38.primary_assembly.genome.fa.3.bt2
#>   ...      ...                                    
#>   BFC127 | knownGene_mm39.sql                     
#>   BFC128 | knownGene_mm39.txt                     
#>   BFC129 | refGene_mm39.sql                       
#>   BFC130 | refGene_mm39.txt                       
#>   BFC131 | GRCh37_to_GRCh38.chain                 
#>          Path                                                               
#>   BFC1   /tmp/RtmpgEiA85/SharedData/outfile.txt                             
#>   BFC2   /tmp/RtmpgEiA85/exp_data                                           
#>   BFC3   https://storage.googleapis.com/reusedata/bowtie2_index/GRCh38.pr...
#>   BFC4   https://storage.googleapis.com/reusedata/bowtie2_index/GRCh38.pr...
#>   BFC5   https://storage.googleapis.com/reusedata/bowtie2_index/GRCh38.pr...
#>   ...    ...                                                                
#>   BFC127 https://storage.googleapis.com/reusedata/ucsc_database/knownGene...
#>   BFC128 https://storage.googleapis.com/reusedata/ucsc_database/knownGene...
#>   BFC129 https://storage.googleapis.com/reusedata/ucsc_database/refGene_m...
#>   BFC130 https://storage.googleapis.com/reusedata/ucsc_database/refGene_m...
#>   BFC131 /tmp/RtmpgEiA85/gcpData/GRCh37_to_GRCh38.chain

The data supports user-friendly discovery and access through the ReUseData portal, where detailed instructions are provided for straight-forward incorporation into data analysis pipelines run on local computing nodes, web resources, and cloud computing platforms (e.g., Terra, CGC).

4 Know your data

Here we provide a function meta_data() to create a data frame that contains all information about the data sets in the specified file path (recursively), including the annotation file ($yml column), parameter values for the recipe ($params column), data file path ($output column), keywords for data file (notes columns), date of data generation (date column), and any tag if available (tag column).

Use cleanup = TRUE to cleanup any invalid or expired/older intermediate files.

mt <- meta_data(outdir)
head(mt)
#>                                                            yml
#> 1 /tmp/RtmpgEiA85/SharedData/echo_out_Hello_World!_outfile.yml
#>                                  params                                 output
#> 1 input: Hello World!; outfile: outfile /tmp/RtmpgEiA85/SharedData/outfile.txt
#>                  notes                       date
#> 1 echo hello world txt 2023-12-10 18:56:16.057382

5 SessionInfo

sessionInfo()
#> R version 4.3.2 Patched (2023-11-13 r85521)
#> Platform: x86_64-pc-linux-gnu (64-bit)
#> Running under: Ubuntu 22.04.3 LTS
#> 
#> Matrix products: default
#> BLAS:   /home/biocbuild/bbs-3.18-bioc/R/lib/libRblas.so 
#> LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.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.2.2     Rcwl_1.18.0         S4Vectors_0.40.2   
#> [4] BiocGenerics_0.48.1 yaml_2.3.7          BiocStyle_2.30.0   
#> 
#> loaded via a namespace (and not attached):
#>  [1] tidyselect_1.2.0      dplyr_1.1.4           blob_1.2.4           
#>  [4] filelock_1.0.2        R.utils_2.12.3        fastmap_1.1.1        
#>  [7] BiocFileCache_2.10.1  promises_1.2.1        digest_0.6.33        
#> [10] base64url_1.4         mime_0.12             lifecycle_1.0.4      
#> [13] ellipsis_0.3.2        RSQLite_2.3.4         magrittr_2.0.3       
#> [16] compiler_4.3.2        rlang_1.1.2           sass_0.4.8           
#> [19] progress_1.2.3        tools_4.3.2           utf8_1.2.4           
#> [22] data.table_1.14.10    knitr_1.45            prettyunits_1.2.0    
#> [25] brew_1.0-8            htmlwidgets_1.6.4     bit_4.0.5            
#> [28] curl_5.2.0            reticulate_1.34.0     RColorBrewer_1.1-3   
#> [31] batchtools_0.9.17     BiocParallel_1.36.0   purrr_1.0.2          
#> [34] withr_2.5.2           R.oo_1.25.0           grid_4.3.2           
#> [37] fansi_1.0.6           git2r_0.33.0          xtable_1.8-4         
#> [40] debugme_1.1.0         cli_3.6.1             rmarkdown_2.25       
#> [43] DiagrammeR_1.0.10     crayon_1.5.2          generics_0.1.3       
#> [46] httr_1.4.7            visNetwork_2.1.2      DBI_1.1.3            
#> [49] cachem_1.0.8          parallel_4.3.2        BiocManager_1.30.22  
#> [52] basilisk_1.14.1       vctrs_0.6.5           Matrix_1.6-4         
#> [55] jsonlite_1.8.8        dir.expiry_1.10.0     bookdown_0.37        
#> [58] hms_1.1.3             bit64_4.0.5           jquerylib_0.1.4      
#> [61] RcwlPipelines_1.18.0  glue_1.6.2            codetools_0.2-19     
#> [64] stringi_1.8.2         later_1.3.2           tibble_3.2.1         
#> [67] pillar_1.9.0          basilisk.utils_1.14.1 rappdirs_0.3.3       
#> [70] htmltools_0.5.7       R6_2.5.1              dbplyr_2.4.0         
#> [73] evaluate_0.23         shiny_1.8.0           lattice_0.22-5       
#> [76] R.methodsS3_1.8.2     png_0.1-8             backports_1.4.1      
#> [79] memoise_2.0.1         httpuv_1.6.13         bslib_0.6.1          
#> [82] Rcpp_1.0.11           checkmate_2.3.1       xfun_0.41            
#> [85] pkgconfig_2.0.3