Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • Wei-HD
    Member
    • Oct 2009
    • 59

    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
  • maubp
    Peter (Biopython etc)
    • Jul 2009
    • 1544

    #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

    • kmcarr
      Senior Member
      • May 2008
      • 1181

      #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

      • Wei-HD
        Member
        • Oct 2009
        • 59

        #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

        • strob
          Member
          • Nov 2008
          • 84

          #5


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

          Comment

          • MattB
            Member
            • Aug 2008
            • 35

            #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

            • MattB
              Member
              • Aug 2008
              • 35

              #7
              Looks like strob just beat me to it

              Comment

              • maubp
                Peter (Biopython etc)
                • Jul 2009
                • 1544

                #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

                • Wei-HD
                  Member
                  • Oct 2009
                  • 59

                  #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

                  • MattB
                    Member
                    • Aug 2008
                    • 35

                    #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

                    • maubp
                      Peter (Biopython etc)
                      • Jul 2009
                      • 1544

                      #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

                      • SEQadmin2
                        Nine Things a Sample Prep Scientist Thinks About Before Sequencing
                        by SEQadmin2


                        I’m not a sequencing expert. I’m a purification scientist who uses NGS to evaluate workflows my group develops. With this perspective, we think about the sample first and the NGS workflow second. The sequencer is an exceptionally honest reporter, but it can only report on what you give it, so whether you get clean, interpretable data from an NGS workflow is largely determined before you begin.


                        Here are nine questions we think about, in roughly the order they matter, before...
                        06-18-2026, 07:11 AM
                      • SEQadmin2
                        From Collection to Sequencing: Why Sample Preparation and Preservation Define Sequencing Data
                        by SEQadmin2


                        Data variability is still an issue in sequencing technologies despite the advances in reproducibility and accuracy of these platforms. But the problem does not originate in the sequencing itself, but in the previous steps, before the sample reaches the sequencer.


                        The first step is collection, followed by preservation and sample preparation for analysis. Most scientists overlook those steps, but not being careful might just be skewing the experiment’s results.
                        ...
                        06-02-2026, 10:05 AM

                      ad_right_rmr

                      Collapse

                      News

                      Collapse

                      Topics Statistics Last Post
                      Started by SEQadmin2, 06-17-2026, 06:09 AM
                      0 responses
                      26 views
                      0 reactions
                      Last Post SEQadmin2  
                      Started by SEQadmin2, 06-09-2026, 11:58 AM
                      0 responses
                      43 views
                      0 reactions
                      Last Post SEQadmin2  
                      Started by SEQadmin2, 06-05-2026, 10:09 AM
                      0 responses
                      48 views
                      0 reactions
                      Last Post SEQadmin2  
                      Started by SEQadmin2, 06-04-2026, 08:59 AM
                      0 responses
                      49 views
                      0 reactions
                      Last Post SEQadmin2  
                      Working...