| find_ampliseq | R Documentation |
Find and read-in AmpliSeq files into an expression matrix
find_ampliseq(dir)
read_ampliseq(files)
find_and_read_ampliseq(dir)
dir |
The top-level directory where a AmpliSeq run is saved. An example: ‘/data64/sequencing/iontorrent_data/Auto_user_PR1-139-AmpliSeqRNA_pathway_FD14_277_360/’ |
files |
AmpliSeq files, potentially found by |
Directory is recursively checked for files that match the name pattern ‘*.cov.xls’ (cov means coverage). Invalid links (judged by file size) are excluded.
Only data of total read counts are read-in.
find_ampliseq returns a character vector of full names of
valid files.
read_ampliseq returns a numeric matrix of gene expression in counts.
Row names are unique gene names.
find_and_read_ampliseq combines the two functions and returns the
expression matrix as read_ampliseq does.
Jitao David Zhang <jitao_david.zhang@roche.com>
ampdir <- system.file("extdata/ampliseq-data", package="ribiosIO")
ampfiles <- find_ampliseq(ampdir)
ampmat <- read_ampliseq(ampfiles)
ampmat.onestep <- find_and_read_ampliseq(ampdir)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.