Hi,
I know it is too naive but when I tried to extract genes with fold-change >2.0 or <0.5 alterations I faced error.
I tried so
results <- t[which(abs(t$logFC) > 1 & t$adj.P.Val < 0.05),]
This gives me only fold-change >2.0
, then how I add fold-change < 0.5
to this code please??
Thank you
Try if following works:
I am not sure if it is good to filter the genes by statistical significance and fc at the same time.
Sorry, do you mean I should first filter for statistical significance and then FC or vice versa instead of performing both at the same time????