Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • removal of organelle data

    Is removal of organelle data necessary before determining the level of duplication in transcriptomics data and their removal? Why it is necessary?

  • #2
    Removal of organelle reads is not necessary. But it can make your job more efficient if a huge amount of your reads came from organelles that you don't care about.

    Comment


    • #3
      Originally posted by Brian Bushnell View Post
      Removal of organelle reads is not necessary. But it can make your job more efficient if a huge amount of your reads came from organelles that you don't care about.
      Thanks for reply. Does this removal affect the final analysis for differential gene expression? I want to analyze organelle gene expression also, along with nuclear genes.

      Comment


      • #4
        If you are interested in differential expression of organelle genes, then clearly you should not remove them! If you wish to know the overall expression of both nuclear and organelle genes, and consider RNA content a proxy for their activity, it does not make sense to me to process them independently. But, maybe a biologist will chime in and correct me on that; perhaps the expression of nuclear and organelle transcripts are very different and should be processed independently.

        My prior answer that "removal of organelle reads is not necessary" was based on the fact that chloroplast and mitochondrial reads don't pose much of a problem to my institution - it's convenient, but not necessary (and usually very difficult), to separate organelle and nuclear reads prior to assembly. For RNA-seq, it seems to me a waste of time and counterproductive if you want to analyze differential expression of both nuclear and organelle genes, but again, I'll defer to biologists.

        Comment


        • #5
          best practices for organellar ID and purging?

          Hi Brian-- Any tips on pipelines or documents that describe the best way to evaluate (and possibly purge) the organellar content of a batch of reads? (Googling didn't get me as far as I was expecting it would.) It seems to be a problem of variable magnitude and, as you say, sometimes has a big impact on the results of using the non-organellar content.

          Thanks! -- Jonathan

          Originally posted by Brian Bushnell View Post
          If you are interested in differential expression of organelle genes, then clearly you should not remove them! If you wish to know the overall expression of both nuclear and organelle genes, and consider RNA content a proxy for their activity, it does not make sense to me to process them independently. But, maybe a biologist will chime in and correct me on that; perhaps the expression of nuclear and organelle transcripts are very different and should be processed independently.

          My prior answer that "removal of organelle reads is not necessary" was based on the fact that chloroplast and mitochondrial reads don't pose much of a problem to my institution - it's convenient, but not necessary (and usually very difficult), to separate organelle and nuclear reads prior to assembly. For RNA-seq, it seems to me a waste of time and counterproductive if you want to analyze differential expression of both nuclear and organelle genes, but again, I'll defer to biologists.

          Comment


          • #6
            If you have organelle references and a main genome reference, you can try using BBMap's BBSplit or Seal to fractionate the reads between them or generate stats about how many reads go with each one. BBSplit is probably more accurate and alignment-based, while Seal is faster and kmer-based. Example:

            Code:
            bbsplit.sh ref=genome.fa,mito.fa,chloro.fa in=reads.fq basename=out_%.fq refstats=refstats.txt
            The weakness of the approach is that some genes (such as ribosomes) may be duplicated between the organelles and main genome, in which case you can't cleanly separate them. But it should work for the majority of the genome.

            If you don't have references, you can still attempt fractionation based on kmer-coverage, at least for mitochondrial reads. I've done this successfully to assemble fungal mitochondria from raw fungal reads like this:

            Code:
            #First link reference as ref.fa and reads as reads.fq.gz
            
            kmercountexact.sh in=reads.fq.gz khist=khist_raw.txt peaks=peaks_raw.txt
            
            primary=`grep "haploid_fold_coverage" peaks_raw.txt | sed "s/^.*\t//g"`
            cutoff=$(( $primary * 3 ))
            
            bbnorm.sh in=reads.fq.gz out=highpass.fq.gz pigz passes=1 bits=16 min=$cutoff target=9999999
            reformat.sh in=highpass.fq.gz out=highpass_gc.fq.gz maxgc=0.45
            
            kmercountexact.sh in=highpass_gc.fq.gz khist=khist_100.txt k=100 peaks=peaks_100.txt smooth ow smoothradius=1 maxradius=1000 progressivemult=1.06 maxpeaks=16 prefilter=2
            
            mitopeak=`grep "main_peak" peaks_100.txt | sed "s/^.*\t//g"`
            
            upper=$((mitopeak * 6 / 3))
            lower=$((mitopeak * 3 / 7))
            mcs=$((mitopeak * 3 / 4))
            mincov=$((mitopeak * 2 / 3))
            
            tadwrapper.sh in=highpass_gc.fq.gz out=contigs_intermediate_%.fa k=78,100,120 outfinal=contigs_intermediate.fa prefilter=2 mincr=$lower maxcr=$upper mcs=$mcs mincov=$mincov
            
            bbduk.sh in=highpass.fq.gz ref=contigs_intermediate.fa outm=bbd005.fq.gz k=31 mm=f mkf=0.05
            
            tadpole.sh in=bbd005.fq.gz out=contigs_bbd.fa prefilter=2 mincr=$((mitopeak * 3 / 8)) maxcr=$((upper * 2)) mcs=$mcs mincov=$mincov k=100 bm1=6
            
            ln -s contigs_bbd.fa contigs.fa
            This is an attempt at an automatic solution to use for a large number of libraries, which usually worked pretty well, but manually deciding the coverage boundaries of the main peak might work better if you only have a single library to deal with. Not sure if chloroplasts have enough copies to make their peak stand out clearly from main genome repeats.
            Last edited by Brian Bushnell; 08-09-2017, 03:52 PM.

            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
            9 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 03-22-2024, 10:03 AM
            0 responses
            49 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