I am fairly new at RNA-sequencing analysis, but I have attempted to analyse the data I obtained from RNA sequencing on my own by following an online EdX class and by basing the majority of the analysis on the recommendations of Azenta in the following guide: A Quick Start Guide to RNA-Seq Data Analysis .
For context, I am looking at making two different comparisons each time between human A549 cells treated with control siRNA (non-targeted siRNA) and a targeted knockdown using siRNA. I have 3 sequenced replicates for each condition.
As mentioned I mainly followed the steps recommended by azenta:
FASTQC to look at the quality of the samples (everything seems fine there)
Trimming reads with trimmomatic (ILLUMINACLIP:TruSeq3-PE.fa:2:30:10:2:keepBothReads LEADING:3 TRAILING:3 MINLEN:36)
Aligning the reads to the hg19 reference genome with STAR (the relevant files for the genome assembly, fasta and gtf, were retrieved from the gencode database)
Calculate gene hit counts with featureCounts (in R; isGTFAnnotationFile=TRUE, countMultiMappingReads=FALSE, GTF.featureType="exon", largestOverlap=TRUE, GTF.attrType="gene_id")
Compare hit counts between groups using DESeq2 with LFCshrink type Apeglem.
Without taking fold change into account, by only looking at the p-adjusted value < 0.05, we only identify 19 genes matching this parameter in one comparison and 2 in the other comparison. In each comparison, one of the genes that is identified as being differentially expressed is the one that was knocked down by our siRNA treatment.
We were expecting to identify much more differentially expressed genes, but since we do identify the knocked down gene, we are unsure whether something is wrong with our pipeline or with the samples? Or whether this could be interpreted as a "normal" amount of differentially expressed genes?
I tried different types of LFCshrink normalization which did not significantly alter the results. I also tried to run the easily accessible airway dataset through the DESeq2 pipeline, this dataset did seem to behave normally. I also tried a genome assembly based on files obtained from the UCSC database, which also did not alter the data.
Any guidance or advise would be appreciated to help figure out whether something is wrong with our analysis or not! Thank you for your help.

