Description Usage Arguments Value Author(s) References See Also Examples
GEP.process
handles the whole analysis from .fsa files, generating tables of expression values and graphical profiles.
GEP.interface
summons a Tcl-Tk interface to call GEP.process
interactively.
1 2 3 | GEP.process(input, design, output, overwrite = list(), gene.cex = 1.3,
file.line = 3, mar = c(5,4,5,1), progressBar = NULL)
GEP.interface()
|
input |
Single character value, the path to a directory containing .fsa files to analyse. Notice it will be explored recursively, so sub-directories are allowed. |
design |
Single character value, the path to a design file, as handled by |
output |
Single character value, the path to a ".pdf" or ".log" file that will be created during the analysis. |
overwrite |
Named list, to be passed to |
gene.cex |
Single numeric value, the character expanding factor for gene names. |
file.line |
Single numeric value, the line on which print the file name on plots. |
mar |
Numeric vector with 4 values, the margin sizes on bottom, left, top and right sides respectively. |
progressBar |
A |
Return nothing. GEP.process
raise errors, warnings and messages which are intercepted by GEP.interface
and redirected to the log file.
Various files are produced, in location set by the output
argument :
Numeric matrix of normalized expressions (each sample is divided by its means).
Table collecting all the peaks called during the analysis, with their size, intensity, sample, annotation and off-scale status.
Profiles of the samples analysed. See designFile
for customisation.
Log file of errors, warnings and message (only GEP.interface
produces it).
Sylvain Mareschal
Mareschal, Ruminy et al (2015) <doi:10.1016/j.jmoldx.2015.01.007> "Accurate Classification of Germinal Center B-Cell-Like/Activated B-Cell-Like Diffuse Large B-Cell Lymphoma Using a Simple and Rapid Reverse Transcriptase-Multiplex Ligation-Dependent Probe Amplification Assay: A CALYM Study"
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # Working in temporary directory
output <- sprintf("%s/test.log", tempdir())
# See files before analysis
dir(system.file("extdata", package="MLPA"))
# Launch analysis in package directory
GEP.process(
input = system.file("extdata/fsa", package="MLPA"),
design = system.file("extdata/design.conf", package="MLPA"),
output = output
)
# List resulting files
dir(dirname(output), full.names=TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.