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
                        Proteomic Platforms: How to Choose the Right Analytical Strategy to Improve Detection and Clinical Applications
                        by SEQadmin2


                        Proteomics platforms are evolving rapidly, with advances in mass spectrometry and affinity-based approaches expanding what researchers can detect and at what scale. As the field moves toward deeper proteome coverage and clinical applications, scientists face an increasingly complex landscape of tools. This article will explore how researchers are navigating these choices to find the right platform for their work.

                        The systematic characterization of the human proteome has
                        ...
                        07-20-2026, 11:48 AM
                      • SEQadmin2
                        Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
                        by SEQadmin2



                        Genomics studies in neuroscience face a special challenge due to the brain’s complexity and scarcity of samples. Mapping changes in cell type and state using conventional next-generation sequencing methods remains challenging. Advances in technologies like single-cell sequencing, spatial transcriptomics, and long-read sequencing have opened the door to deeper studies of the brain and diseases like Alzheimer’s, amyotrophic lateral sclerosis (ALS), and schizophrenia.
                        ...
                        07-09-2026, 11:10 AM
                      • SEQadmin2
                        Cancer Drug Resistance: The Lingering Barrier to Rising Survival
                        by SEQadmin2



                        Cancer survival rates have significantly increased in the last few decades in the United States, reaching a combined 70% 5-year survival rate by 2021. Behind this number, there are years of research to find new therapies, drug targets, and early detection methods. But there is one core challenge that keeps slowing down these advances, and it’s about drug resistance.

                        There is no single reason why many patients don’t respond to treatment as expected. Cancer is...
                        07-08-2026, 05:17 AM

                      ad_right_rmr

                      Collapse

                      News

                      Collapse

                      Topics Statistics Last Post
                      Started by SEQadmin2, Today, 11:41 AM
                      0 responses
                      9 views
                      0 reactions
                      Last Post SEQadmin2  
                      Started by SEQadmin2, 07-20-2026, 11:10 AM
                      0 responses
                      22 views
                      0 reactions
                      Last Post SEQadmin2  
                      Started by SEQadmin2, 07-13-2026, 10:26 AM
                      0 responses
                      35 views
                      0 reactions
                      Last Post SEQadmin2  
                      Started by SEQadmin2, 07-09-2026, 10:04 AM
                      0 responses
                      45 views
                      0 reactions
                      Last Post SEQadmin2  
                      Working...