Hello,
I have 5 RNA-seq samples (with 3 repetition for each sample) from different cell lines that are not related to each other. My goal is to analyze gene expression, but I am unsure about the best approach to design the analysis. Since I don't have control samples as a reference for the comparison (e.g., healthy vs. cancer cells), I am focusing on the expression levels of each gene in each sample individually.
If I only have one sample, how should I interpret the results? How can I determine if a gene is highly expressed? Additionally, if I have only one condition (one sample without any reference sample), how should I create the design matrix?
If I had experiments with a few conditions that I wanted to compare to each other, I would do something like this:
group = factor(sampleinfo$condition)
y <- DGEList(count_data, group=group)
condition <- factor(sampleinfo$condition)
design <- model.matrix(~ 0 + condition)
yNorm <- calcNormFactors(y)
But I can't do model.matrix with only one sample.
Would it make sense to perform gene expression analysis on all samples together and normalize them with 'between samples' normalization methods, even though they are completely unrelated? This way, I could compile them into one table and identify the top 20 genes in each sample.
I would greatly appreciate any help!!!
r
gene-expression
rna-seq