Changes between Version 41 and Version 42 of SOPs/rna-seq-diff-expressions
- Timestamp:
- 05/17/17 10:55:39 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOPs/rna-seq-diff-expressions
v41 v42 59 59 * Sample commands: 60 60 {{{ 61 #default: unstranded 61 62 #single-end reads 62 63 featureCounts -a gene_anotations.gtf -o MySample.featureCounts.txt MySample.bam 63 64 #PE reads 64 65 featureCounts -p -a gene_anotations.gtf -o MySample.featureCounts.txt MySample.bam 66 67 #stranded (fwd) 68 featureCounts -p -s 1 -a gene_anotations.gtf -o MySample.featureCounts.txt MySample.bam 69 65 70 }}} 66 71 * For some analyses (or for visualization), you can add a pseudocount (such as 1 or another small number) to all genes in all samples to prevent log2 ratios that require dividing by 0 and reduce background count noise -- BUT be aware that some statistical methods (like DESeq) require raw input values without any pseudocounts or normalization.