1 Retrieval of the gDNA contaminated RNA-seq data by Li et al. (2022)

Here we show how to download a subset of the RNA-seq data published in:

Li, X., Zhang, P., and Yu. Y. Gene expressed at low levels raise false discovery rates in RNA samples contaminated with genomic DNA. BMC Genomics, 23:554, 2022. https://doi.org/10.1186/s12864-022-08785-1

The subset of the data available through this package are BAM files containing about 100,000 alignments, sampled uniformly at random from complete BAM files. These complete BAM files were obtained by aligning the RNA-seq reads sequenced from total RNA libraries mixed with different concentrations of gDNA, concretely 0% (no contamination), 1% and 10%; see Fig. 2 from Li et al. (2022). The original RNA-seq data is publicly available at https://ngdc.cncb.ac.cn/bioproject/browse/PRJCA007961 and you can find the pipeline to generate this subset of the data in the file gDNAinRNAseqData/inst/scripts/make-data_LiYu22subsetBAMfiles.R stored in this package.

To download these subsetted BAM files, and the corresponding index (.bai) files, we load this package and call the function LiYu22subsetBAMfiles():

library(gDNAinRNAseqData)

bamfiles <- LiYu22subsetBAMfiles()
bamfiles
## [1] "/tmp/Rtmp4aFHXc/s32gDNA0.bam"  "/tmp/Rtmp4aFHXc/s33gDNA0.bam" 
## [3] "/tmp/Rtmp4aFHXc/s34gDNA0.bam"  "/tmp/Rtmp4aFHXc/s26gDNA1.bam" 
## [5] "/tmp/Rtmp4aFHXc/s27gDNA1.bam"  "/tmp/Rtmp4aFHXc/s28gDNA1.bam" 
## [7] "/tmp/Rtmp4aFHXc/s23gDNA10.bam" "/tmp/Rtmp4aFHXc/s24gDNA10.bam"
## [9] "/tmp/Rtmp4aFHXc/s25gDNA10.bam"

The previous function call can take a path argument to specify the path in the filesystem where we would like to store the downloaded BAM files, which by default is a temporary path from the current R session; consult the help page of LiYu22subsetBAMfiles() for full details.

We can also retrieve the gDNA concentrations associated to each BAM file with the following function call:

pdat <- LiYu22phenoData(bamfiles)
pdat
##           gDNA
## s32gDNA0     0
## s33gDNA0     0
## s34gDNA0     0
## s26gDNA1     1
## s27gDNA1     1
## s28gDNA1     1
## s23gDNA10   10
## s24gDNA10   10
## s25gDNA10   10

2 Session information

sessionInfo()
## R version 4.3.1 (2023-06-16)
## 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] Rsamtools_2.18.0       Biostrings_2.70.1      XVector_0.42.0        
##  [4] GenomicRanges_1.54.0   GenomeInfoDb_1.38.0    IRanges_2.36.0        
##  [7] S4Vectors_0.40.0       BiocGenerics_0.48.0    gDNAinRNAseqData_1.2.0
## [10] BiocStyle_2.30.0      
## 
## loaded via a namespace (and not attached):
##  [1] KEGGREST_1.42.0               xfun_0.40                    
##  [3] bslib_0.5.1                   Biobase_2.62.0               
##  [5] bitops_1.0-7                  vctrs_0.6.4                  
##  [7] tools_4.3.1                   generics_0.1.3               
##  [9] parallel_4.3.1                curl_5.1.0                   
## [11] tibble_3.2.1                  fansi_1.0.5                  
## [13] AnnotationDbi_1.64.0          RSQLite_2.3.1                
## [15] blob_1.2.4                    pkgconfig_2.0.3              
## [17] dbplyr_2.3.4                  GenomeInfoDbData_1.2.11      
## [19] lifecycle_1.0.3               compiler_4.3.1               
## [21] codetools_0.2-19              httpuv_1.6.12                
## [23] htmltools_0.5.6.1             sass_0.4.7                   
## [25] RCurl_1.98-1.12               yaml_2.3.7                   
## [27] interactiveDisplayBase_1.40.0 pillar_1.9.0                 
## [29] later_1.3.1                   crayon_1.5.2                 
## [31] jquerylib_0.1.4               ellipsis_0.3.2               
## [33] BiocParallel_1.36.0           cachem_1.0.8                 
## [35] mime_0.12                     ExperimentHub_2.10.0         
## [37] AnnotationHub_3.10.0          tidyselect_1.2.0             
## [39] digest_0.6.33                 purrr_1.0.2                  
## [41] dplyr_1.1.3                   bookdown_0.36                
## [43] BiocVersion_3.18.0            fastmap_1.1.1                
## [45] cli_3.6.1                     magrittr_2.0.3               
## [47] XML_3.99-0.14                 utf8_1.2.4                   
## [49] withr_2.5.1                   filelock_1.0.2               
## [51] promises_1.2.1                rappdirs_0.3.3               
## [53] bit64_4.0.5                   rmarkdown_2.25               
## [55] httr_1.4.7                    bit_4.0.5                    
## [57] png_0.1-8                     memoise_2.0.1                
## [59] shiny_1.7.5.1                 evaluate_0.22                
## [61] knitr_1.44                    BiocFileCache_2.10.0         
## [63] rlang_1.1.1                   Rcpp_1.0.11                  
## [65] xtable_1.8-4                  glue_1.6.2                   
## [67] DBI_1.1.3                     BiocManager_1.30.22          
## [69] jsonlite_1.8.7                R6_2.5.1                     
## [71] zlibbioc_1.48.0