Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • advice/critique on my RNA-seq workflow

    Hi guys,

    Would love some feedback on my RNA-seq workflow. I've got to analyze NGS dataset, and basically, I'm a noob in NGS - a bench researchers, who wants to move closer to bioinformatics.

    The goal of the experiment is to find differentially expressed genes between two treatment groups, I've got ~ 10 mil reads per sample, 36 cycles, barcoded.

    Here is the workflow:

    1. Examined quality in FastQC;
    2. Trimmed adapters (I used cutadapt program);
    3. Aligned reads to the genome with bowtie: bowtie -v 2 --best -s <ebwt> <reads> <sam>

    4. Converted sam to bam:
    samtools -view -bS <sam> <bam>

    5. Downloaded refseq gene annotation from UCSC in bed format from gene and prediction tracks using UCSC table browser;

    6. This step bothers me a bit. As far as I understand UCSC views genes as transcripts, so there are multiple entries listed for the same or closely overlapping genomic coordinates. As the result I'll end up with the same read counts vs basically same gene, which is listed under multiple transcript names. I suspect this could mess with the size factors estimation in DESeq.
    So I merged overlapping transcripts in order to avoid this ambiguity in read counting using bedtools software, which I really came to appreciate:
    mergeBed -nms -i <bed> > output_bed: -nms option lists all of the merged entries opposite to new set of genomic coordinates

    The problem with merging is that some genuinely different genes may have small overlaps and will be merged into one feature. But I hope that this is a minor risk and I'll be able to examine differentially expressed genes manually.

    7. Finally, I've obtained read count for each of the merged features using bedtools:
    intersectBed -abam <bam> -b refseq_exons_hg19.bed -bed -split -f 1.0 | intersectBed -a stdin -b merged_refseq_hg19.bed | coverageBed -a stdin -b merged_refseq_hg19.bed > file.coverage

    This sequence of commands should obtain only those reads which have 100% overlaps with known refseq exons (uploaded from UCSC), intersect those with whole genes and count raw read coverage for each gene;

    8. And lastly, I'm going to use DESeq to detect differential expression.

    Thanks in advance!
    Slava.

  • #2
    You probably want to align your RNA-seq data with Tophat not Bowtie.

    Assuming you're using something like mouse or human, ~10 million reads may not be enough to quantify lower expressing genes.

    I found that trimming didn't really increase the percent of reads that align. I've only done a little RNA-seq analysis but you can see some of the stuff I've tried here.

    Comment


    • #3
      Thanks for your suggestions biznatch!
      I've tried to use Tophat, but it looks like its geared to align longer reads, since it wants to split them into multiple segments and align those separately. With about 29 nt I was getting really weird results, for instance my resulting bam files contained more reads aligned than I had initially in the fastq file. With bowtie I'm getting 80 - 90% alignment.
      Adapter trimming in this case did not do much since very few reads contained adapters and reads were of high quality.

      Comment


      • #4
        Take a look at our protocol at http://www.novocraft.com/wiki/tiki-i...page_ref_id=35 . The output is a SAM file that may be used for calculating expression, gene fusions and splice junctions.

        Comment

        Latest Articles

        Collapse

        • seqadmin
          Strategies for Sequencing Challenging Samples
          by seqadmin


          Despite advancements in sequencing platforms and related sample preparation technologies, certain sample types continue to present significant challenges that can compromise sequencing results. Pedro Echave, Senior Manager of the Global Business Segment at Revvity, explained that the success of a sequencing experiment ultimately depends on the amount and integrity of the nucleic acid template (RNA or DNA) obtained from a sample. “The better the quality of the nucleic acid isolated...
          03-22-2024, 06:39 AM
        • seqadmin
          Techniques and Challenges in Conservation Genomics
          by seqadmin



          The field of conservation genomics centers on applying genomics technologies in support of conservation efforts and the preservation of biodiversity. This article features interviews with two researchers who showcase their innovative work and highlight the current state and future of conservation genomics.

          Avian Conservation
          Matthew DeSaix, a recent doctoral graduate from Kristen Ruegg’s lab at The University of Colorado, shared that most of his research...
          03-08-2024, 10:41 AM

        ad_right_rmr

        Collapse

        News

        Collapse

        Topics Statistics Last Post
        Started by seqadmin, Yesterday, 06:37 PM
        0 responses
        10 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, Yesterday, 06:07 PM
        0 responses
        10 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 03-22-2024, 10:03 AM
        0 responses
        51 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 03-21-2024, 07:32 AM
        0 responses
        67 views
        0 likes
        Last Post seqadmin  
        Working...
        X