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
                        Advanced Tools Transforming the Field of Cytogenomics
                        by seqadmin


                        At the intersection of cytogenetics and genomics lies the exciting field of cytogenomics. It focuses on studying chromosomes at a molecular scale, involving techniques that analyze either the whole genome or particular DNA sequences to examine variations in structure and behavior at the chromosomal or subchromosomal level. By integrating cytogenetic techniques with genomic analysis, researchers can effectively investigate chromosomal abnormalities related to diseases, particularly...
                        Yesterday, 06:26 AM
                      • seqadmin
                        How RNA-Seq is Transforming Cancer Studies
                        by seqadmin



                        Cancer research has been transformed through numerous molecular techniques, with RNA sequencing (RNA-seq) playing a crucial role in understanding the complexity of the disease. Maša Ivin, Ph.D., Scientific Writer at Lexogen, and Yvonne Goepel Ph.D., Product Manager at Lexogen, remarked that “The high-throughput nature of RNA-seq allows for rapid profiling and deep exploration of the transcriptome.” They emphasized its indispensable role in cancer research, aiding in biomarker...
                        09-07-2023, 11:15 PM
                      • seqadmin
                        Methods for Investigating the Transcriptome
                        by seqadmin




                        Ribonucleic acid (RNA) represents a range of diverse molecules that play a crucial role in many cellular processes. From serving as a protein template to regulating genes, the complex processes involving RNA make it a focal point of study for many scientists. This article will spotlight various methods scientists have developed to investigate different RNA subtypes and the broader transcriptome.

                        Whole Transcriptome RNA-seq
                        Whole transcriptome sequencing...
                        08-31-2023, 11:07 AM

                      ad_right_rmr

                      Collapse

                      News

                      Collapse

                      Topics Statistics Last Post
                      Started by seqadmin, Today, 06:57 AM
                      0 responses
                      6 views
                      0 likes
                      Last Post seqadmin  
                      Started by seqadmin, Yesterday, 07:53 AM
                      0 responses
                      8 views
                      0 likes
                      Last Post seqadmin  
                      Started by seqadmin, 09-25-2023, 07:42 AM
                      0 responses
                      14 views
                      0 likes
                      Last Post seqadmin  
                      Started by seqadmin, 09-22-2023, 09:05 AM
                      0 responses
                      44 views
                      0 likes
                      Last Post seqadmin  
                      Working...
                      X