Changes between Version 51 and Version 52 of SOPs/rna-seq-diff-expressions


Ignore:
Timestamp:
06/29/17 10:56:32 (8 years ago)
Author:
thiruvil
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SOPs/rna-seq-diff-expressions

    v51 v52  
    3131      * 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)
    3232      * 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
    3334      * Carefully choose the best "mode" to handle reads that don't completely map to exactly one gene.
    3435      * Counting can be also performed transcript level but this may be too much information.
     
    6263# single-end reads (unstranded)
    6364featureCounts -a gene_anotations.gtf -o MySample.featureCounts.txt MySample.bam
     65# single-end reads (forward stranded)
     66featureCounts -s 1 -a gene_anotations.gtf -o MySample.featureCounts.txt MySample.bam
     67# single-end reads (reverse stranded)
     68featureCounts -s 2 -a gene_anotations.gtf -o MySample.featureCounts.txt MySample.bam
     69
    6470
    6571# paired-end reads (unstranded)