Description Usage Arguments Author(s) See Also Examples
View source: R/fct_SpeCond_visualisation.R
writeGeneResult
produces a text file containing the list of gene, if they have been detected as tissue-specific or not (S/N), for how many tissues in total, how many tissue as up-regulated, how many tissue as down-regulated, in which tissues for up-regulated and down-regulated.
1 2 | writeGeneResult(L.specific.result, file.name.result.gene =
"gene_summary_result.txt", gene.names = NULL)
|
L.specific.result |
the |
file.name.result.gene |
the name of the produced file containing the list of specific genes an thier specific detection |
gene.names |
vector of gene's names to select a suset of genes. The default is NULL, all genes from the input matrix in |
Florence Cavalli, florence@ebi.ac.uk
SpeCond
,getProfile
,writeSpeCondResult
,writeUniqueProfileSpecificResult
1 2 3 4 5 6 7 8 9 10 11 12 | library(SpeCond)
data(expressionSpeCondExample)
##Perform the condition specific detection analysis with SpeCond()
generalResult=SpeCond(expressionSpeCondExample,
param.detection=NULL, multitest.correction.method="BY", prefix.file="E",
print.hist.pv=TRUE, fit1=NULL, fit2=NULL, specificOutlierStep1=NULL)
specificResult=generalResult$specificResult
##write the result file
writeGeneResult(specificResult$L.specific.result, file.name.result.gene=
"Example_gene_summary_result.txt", gene.names=
rownames(expressionSpeCondExample)[1:10])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.