FBNormalization {FBN} | R Documentation |
FISH Based Normalization and Copy Number Inference of SNP Microarray Data
Description
Normalizes the data from a file containing the raw values of the SNP probes of microarrray data by using the FISH probes and their corresponding CNs.
Usage
FBNormalization(rawDataFileName, fishProbesFileName,
normDataFileName, debugFlag, plotFlag, plotAndSaveFlag)
FBNormalization(rawDataFileName = NULL,
fishProbesFileName = NULL,
normDataFileName = NULL,
debugFlag = FALSE,
plotFlag = FALSE,
plotAndSaveFlag = FALSE)
Arguments
rawDataFileName |
The file containig the raw values of the SNP probes. It should be .txt format, tab delimited, containing on each column the SNP probes data of the different samples. The structure of the input file should be as follows:
|
fishProbesFileName |
The file containing the FISH probes information. It should be .txt format, tab delimited, containing a separate row for each available FISH probe and on each column the various CN data revealed by FISH of the different samples. The structure of the input file should be as follows:
|
normDataFileName |
The name of the output file where the normalized data will be written. Also, the function writes
a file starting with the same name as |
debugFlag |
Logical value, specifying wether the function should run in debug mode. If |
plotFlag |
Logical value, specifying wether the function should plot the histograms of the individual data. If |
plotAndSaveFlag |
Logical value, specifying wether the function should plot and save the various plots of the histograms. |
Details
For further detalis, see Supporting Information in Agnelli L et al. (2009), "A SNP Microarray and FISH-Based Procedure to Detect Allelic Imbalances in Multiple Myeloma: an Integrated Genomics Approach Reveals a Wide Gene Dosage Effect", Genes Chrom Cancer
Value
No value is returned. The function writes on the disk the output files as previously described.
Author(s)
Adrian Andronache adi.andronache@gmail.com
Luca Agnelli luca.agnelli@gmail.com
Examples
## set path to FBN package data directory
rawDataFileName = './../data/hmcls.txt'
fishProbesFileName = './../data/FISHprobes.txt'
normDataFileName= 'hmcls_NORM.txt'
FBNormalization(rawDataFileName, fishProbesFileName, normDataFileName,
debugFlag = FALSE)