Description Usage Arguments Value See Also Examples
Compute differential expression for case vs control samples. Will produce the file computedEmpGenes.csv
listing empiricaly differentially expressed genes used for RNA-Seq normalization.
1 2 3 4 |
case_id |
vector of cases used for differential expression. |
control_id |
vector of controls used for differential expression. |
source |
the file for the octad expression matrix. By default, set to |
expSet |
input expression matrix. By default set to |
file |
if |
normalize_samples |
if TRUE, RUVSeq normalization is applied to either EdgeR or DESeq. No normalization needed for limma+voom. |
k |
eiter k=1 (by default), k=2 or k=3, number of factors used in model matrix construction in RUVSeq normalization if |
n_topGenes |
number of empiricaly differentially expressed genes estimated for RUVSeq normalization. Default is 5000. |
DE_method |
edgeR, DESeq2 or limma DE analysis. |
parallel_cores |
number of cores to be used for parallel computing in DESeq2. |
output |
if |
outputFolder |
path to output folder. By default, the function produces result files in working directory. |
annotate |
if |
res |
|
computedEmpGenes.csv |
|
computeRefTissue,runsRGES,geneEnrich
.
1 2 3 4 5 | HCC_primary=subset(phenoDF,cancer=='liver hepatocellular carcinoma'&sample.type == 'primary') #select data
case_id=HCC_primary$sample.id #select cases
HCC_adjacent=subset(phenoDF,cancer=='liver hepatocellular carcinoma'&sample.type == 'adjacent'&data.source == 'TCGA') #select data
control_id=HCC_adjacent$sample.id #select cases
res=diffExp(case_id,control_id,source='octad.small',output=TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.