Description Usage Arguments Details Value Author(s) References See Also Examples
Correcting gene expression signal for CNV.
1 | CNV_correction(s.Position.EXP, e.Position.EXP, Position.SNP, mu.SNP, EXP)
|
s.Position.EXP |
vector with gene start position |
e.Position.EXP |
vector with gene end position |
Position.SNP |
vector with SNP/CGH positions |
mu.SNP |
Smoothed genomic signal matrix not containing NA values. Rows correspond to probes, while columns to patients. The ordering of the patients must be the same as in the EXP matrix. |
EXP |
Gene expression matrix must not contain NA's and genes with same expression value (i.e. null gene). Rows correspond to probes, while columns to patients. Again, ordering of patients must be the same between EXP and mu.SNP matrices. |
Overlapping genes may correspond to the same SNP/CGH probes.
CNV corrected signal matrix.
E. I. Delatola, E. Lebarbier, T. Mary-Huard, F. Radvanyi, S. Robin, J. Wong.
Delatola E. I., Lebarbier E., Mary-Huard T., Radvanyi F., Robin S., Wong J.(2017). SegCorr: a statistical procedure for the detection of genomic regions of correlated expression. BMC Bioinformatics, 18:333.
1 2 3 4 5 6 7 8 | #data.sets = c('SNP','EXP_raw')
## Each gene corresponds to one SNP probe ##
#Position_EXP = matrix(1:1000,nrow=500,byrow=TRUE)
#Position_SNP = seq(2,1000,by=2)
#data(list=data.sets)
#mu.SNP = segmented_signal(SNP ,100) ## smoothed SNP signal
#EXP.CNV = CNV_correction(Position_EXP[,1], Position_EXP[,2], Position_SNP,
#mu.SNP, EXP_raw)## corrected signal
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.