You are presumably talking about this line in the Rqc vignette:
folder <- system.file(package="ShortRead", "extdata/E-MTAB-1147")
The system.file
function loads a file that can be found in the specified path from the root of the package that is specified. This allows for a mechanism for R to access files that are provided by a package which abstracts away the actual location that the system is configured to install R packages to. See the help page in ?system.file
for more information. If you go to the directory that the ShortRead package is installed in your system, you will find an extdata
folder, and you can take it from there ...
To answer your question about what that file is, it says so right in the Rqc vignette:
The next step is to determine the location of the FASTQ files that should be analyzed. The example below, uses sample files provided by the ShortRead package, but the user must modify this location accordingly, in order to reflect the actual location of the files that need QA.
So, they are sample (small) FASTQ files that are distributed with the ShortRead package for the purposes of running example code (and, likely, unit tests)
Thanks Welliton Souza ..
This was really help full. And i got output also.
Thanks ..