Hi,
I have Bulk-RNA seq data from patients who had a heart attack, including two groups: those who went into shock and those who did not. Additionally, the dataset includes transcriptomes from 5 healthy individuals who did not have a heart attack.
I want to compare the transcriptomic signatures of patients who went into shock after the heart attack versus those who did not. My assumption is to use the heart attack patients without shock as the control group and exclude the healthy samples, as they are unrelated to my primary question.
However, I am new to biostatistics and wonder if this approach is correct or if there’s a way to include the healthy samples to add more depth to the analysis.
My model matrix would look something like this:
design <- model.matrix( ~ 0 + shock, data = targets)
contrasts <- makeContrasts(
"Comparison" = YesSchock - NoShock, levels = design)
I am using R and the "From Reads to Genes" Pipeline for my analysis.