detectLanes | R Documentation |
Detect sequencing lanes
detectLanes(path, pattern = "_L([[:digit:]]{3})")
path |
|
pattern |
|
integer
.
Lane numbers.
Updated 2023-10-03.
## Matching lanes 1-4 for paired-end FASTQ files.
files <- paste0(
"sample1",
paste0("_R", seq_len(2L)),
paste0("_L00", seq_len(4L)),
".fastq.gz"
)
x <- detectLanes(files)
print(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.