| create_obj_list | R Documentation | 
Create a list of TraceQC objects from a list
create_obj_list(samples, ref, ncores = 4)
samples | 
 A list that contains FASTQ file path.  | 
ref | 
 The path to the reference file.  | 
ncores | 
 The number of cores for parallel processing.  | 
It returns a list of TraceQC object
## Not run: 
samples <- list(
  "day00" = system.file("extdata", "test_data", "fastq",
                        "example_0d.fastq.gz", package="TraceQC"),
  "day02" = system.file("extdata", "test_data", "fastq",
                        "example_2d.fastq.gz", package="TraceQC"),
  "day14" = system.file("extdata", "test_data", "fastq",
                        "example_14d.fastq.gz", package="TraceQC")
)
ref <- system.file("extdata", "test_data", "ref",
                   "ref.txt", package="TraceQC")
obj_list <- create_obj_list(samples, ref)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.