Entering edit mode
7.8 years ago
ron.eitan
•
0
I'll start with some context:
- Performed RNA-seq on two samples, one treated with 5-aza and the other with the vehicle only.
- Trimmed raw fastq reads, sorted them for rRNA and tRNAs. (cufflinks/sortmerna)
- Created an hg19 index, fasta files obtained from gencode (STAR)
- Aligned reads to the genome (STAR)
- Created tag directories with the "-keepOne" flag as suggested in HOMER's guidelines (makeTagDirectory)
- Analyzed repeats with the "-noadj" flag as suggested in HOMER's guidelines analyzeRepeats.pl)
- Used getDiffExpression.pl: "getDiffExpression.pl ../un_v_aza.txt untreated untreated aza aza -repeats -edgeR -log2fold 2.0 > ./un_v_aza_de.txt"
And this is the output I get:
Differential Expression Program: edgeR
Treating input as file generated by analyzeRepeats.pl (-repeats)
Using edgeR to calculate differential expression/enrichment...
Output Stats untreated vs. aza:
Total Genes: 1397
Total Up-regulated in untreated vs. aza: 0 (0.000%) [log2fold>2.0, FDR<0.05]
Total Dn-regulated in untreated vs. aza: 0 (0.000%) [log2fold<-2.0, FDR<0.05]
I sincerely doubt there are no upregulated/downregulated repeats differences between the two samples... what am I doing wrong ?
edit: formatting