Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • RNA Seq 72 bp data

    Hi All,

    I chose the length of 72 bp for RNA sequencing. But the result seems weird:

    @HWI-EAS225:5:1:27:1178#0/1
    GTTGTATGTACCCTAAGATTTTGNGTNNNNNNNNNNNNNNNNNNNNNNNNNNGANNNNNNNNNNNNNNNNNN
    +HWI-EAS225:5:1:27:1178#0/1
    aaab_'aaaaaaaba_aaBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB

    Is that means only 20 bp sequence are correct?

    What does N means?

    All my sequences are similar, the first part of the sequences are normal, then NNNNNNN, then normal two nts followed by NNNNNN again. Do you think it is the problem of my sample or sequence machine?

    Thanks for your explanation.

    Best,
    Wei

  • #2
    Try using [ code ] text [ /code ] to stop the forum software showing the FASTQ read funny (with extra spaces).

    It looks like something went wrong with the sequencing at about 20bp. I would ask your sequencing center to check this run.

    Comment


    • #3
      Wei,

      Have you really checked ALL of your sequences or did you just look at the first few hundred at the beginning of the FASTQ file? The Illumina GA sorts the reads by tile and then by x-coordinate. This means that if you look at the beginning of an Illumina generated FASTQ you are seeing the reads from the very left edge of tile number 1. Reads at the edge of any tile are generally of very poor quality; I typically will see hundreds of useless reads, with many, many N's at the beginning of a FASTQ file.

      Ask the facility which generated the sequence to provide you with data about overall run quality.

      Comment


      • #4
        Thanks Kmcarr! I just checked the first several FASTQ sequences. Because the file is really big, I could not check the whole file very fast. Would you kindly tell me how could I check all the sequence. The file is about 3G text.

        Thanks in advance!

        Comment


        • #5


          here you can find some useful tools
          you can also use them in Galaxy

          Comment


          • #6
            Hi Wei,

            Have a look at the 'FASTX Statistics' and 'FASTQ Quality Chart' programs that are part of the FASTX toolkit (http://hannonlab.cshl.edu/fastx_toolkit/index.html). They provide a nice way to evaluate quality of your reads across the whole file.

            Matt

            Comment


            • #7
              Looks like strob just beat me to it

              Comment


              • #8
                Originally posted by Wei-HD View Post
                Because the file is really big, I could not check the whole file very fast. Would you kindly tell me how could I check all the sequence.
                What is your favourite scripting language? Being about to answer this kind of question or variations on it yourself (rather than being limited to what a toolkit may provide) can be very helpful.

                Here is a fairly general script in Python using Biopython which could be adapted for counting the N's in any supported sequence file format.

                Code:
                from Bio import SeqIO
                from collections import defaultdict #Python 2.5+
                
                tally = defaultdict(int)
                
                #assumes all N are in upper case
                for record in SeqIO.parse(open("example.fastq"), "fastq"):
                    tally[record.seq.count("N")] += 1
                
                if not tally:
                    print "Did not find any N"
                else:
                    print "N count, occurrences"
                    for n_count in range(0, max(tally.keys())):
                        print n_count, tally[n_count]
                (If you want a less general FASTQ only version, this can be made a lot faster)

                Comment


                • #9
                  Hi all guys,

                  Thanks so much for your help!

                  My work is mostly about wet experiments, hence not familiar with writing script. I do not know how to use FASTX toolkit.

                  Maubp, thanks for your script, but can you tell me what do you mean by counting the N? Could I got how many N in the short sequence which means the quality of my data?

                  Thanks

                  Comment


                  • #10
                    Wei, have a look at Galaxy (http://main.g2.bx.psu.edu/)

                    It has a very user friendly interface for the Fastx tools..

                    Comment


                    • #11
                      Originally posted by Wei-HD View Post
                      Maubp, thanks for your script, but can you tell me what do you mean by counting the N? Could I got how many N in the short sequence which means the quality of my data?
                      Your example record was odd - it had 45 "N" characters in the 72bp sequence (the rest was 6 A, 3 C, 11 T and 7 G). In a good run I would expect very few "N" characters (hopefully none). Thus looking at the distribution in the number of "N" characters per read seemed a reasonable way to evaluate your data. This would help you answer the question "Does this affect all my reads or just some?".

                      Comment

                      Latest Articles

                      Collapse

                      • seqadmin
                        Current Approaches to Protein Sequencing
                        by seqadmin


                        Proteins are often described as the workhorses of the cell, and identifying their sequences is key to understanding their role in biological processes and disease. Currently, the most common technique used to determine protein sequences is mass spectrometry. While still a valuable tool, mass spectrometry faces several limitations and requires a highly experienced scientist familiar with the equipment to operate it. Additionally, other proteomic methods, like affinity assays, are constrained...
                        04-04-2024, 04:25 PM
                      • 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

                      ad_right_rmr

                      Collapse

                      News

                      Collapse

                      Topics Statistics Last Post
                      Started by seqadmin, 04-11-2024, 12:08 PM
                      0 responses
                      22 views
                      0 likes
                      Last Post seqadmin  
                      Started by seqadmin, 04-10-2024, 10:19 PM
                      0 responses
                      24 views
                      0 likes
                      Last Post seqadmin  
                      Started by seqadmin, 04-10-2024, 09:21 AM
                      0 responses
                      19 views
                      0 likes
                      Last Post seqadmin  
                      Started by seqadmin, 04-04-2024, 09:00 AM
                      0 responses
                      50 views
                      0 likes
                      Last Post seqadmin  
                      Working...
                      X