Changes between Version 51 and Version 52 of SOPs/rna-seq-diff-expressions
- Timestamp:
- 06/29/17 10:56:32 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOPs/rna-seq-diff-expressions
v51 v52 31 31 * Include same GTF file describing gene models as was used for mapping -- but think carefully about what genes should be included (such as long non-coding RNAs, microRNAs, or piRNAs) 32 32 * Is your sequencing library stranded or unstranded? This information is needed to help htseq-count accurately count features. If the library prep method is "TruSeqStrandedPolyA", for example, the reads will be stranded in the reverse direction (relative to the transcript orientation). 33 * See [[SAMBAMqc]] to determine strandedness 33 34 * Carefully choose the best "mode" to handle reads that don't completely map to exactly one gene. 34 35 * Counting can be also performed transcript level but this may be too much information. … … 62 63 # single-end reads (unstranded) 63 64 featureCounts -a gene_anotations.gtf -o MySample.featureCounts.txt MySample.bam 65 # single-end reads (forward stranded) 66 featureCounts -s 1 -a gene_anotations.gtf -o MySample.featureCounts.txt MySample.bam 67 # single-end reads (reverse stranded) 68 featureCounts -s 2 -a gene_anotations.gtf -o MySample.featureCounts.txt MySample.bam 69 64 70 65 71 # paired-end reads (unstranded)