readFast5Summary {IONiseR} | R Documentation |
Reads one or more fast5 files and collects summary information about them.
readFast5Summary(files)
files |
Character vector of fast5 files to be read. |
Currently this function assumes all files passed to it come from the same sequencing run. It makes no effort to check for alternative file names or the like. If files from multiple runs are passed to it they will be collated together and any analysis performed on them will represent the mixture of both experiments.
Object of class Fast5Summary
## Not run: fast5files <- list.files('/foo/bar/', pattern = '.fast5$') summaryData <- readFast5Summary(fast5files) ## End(Not run)