Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • solexa output files | s_*_seq.txt vs. s_*_sequencece.txt

    Hi All,

    Quick question...

    Why would I be seeing more reads in the s_*_seq.txt files in the Bustard directory that I see in the s_*_sequence.txt files in the Gerald directory (fastq).

    i.e.
    wc -l s_*_seq.txt (normal read file)
    8301558 total

    wc -l s_*_sequence.txt (fastq)
    25885740 s_8_2_sequence.txt

    There should be 4 lines for each read in the fastq files but I am not seeing these numbers line up. Anyone know anything about this?
    Are some sequences excluded from the fastq files compared to the normal sequence files?

    Thanks!

  • #2
    The *_seq.txt files in the Bustard directory include the sequence of every cluster (read). The *_sequences.txt files in the GERALD directory only include the passed filter reads.

    Comment


    • #3
      Ah ok!
      That makes perfect sense then.

      Appreciate the explanation.

      bryan

      Comment


      • #4
        Originally posted by lajoieb View Post
        wc -l s_*_sequence.txt (fastq)
        To count the number of reads in a FASTQ file, you can use grep in -c (counting) mode:

        Code:
        grep -c '^\+' *_sequence.txt
        
        s_6_sequence.txt:4525658
        s_7_sequence.txt:4485601
        s_8_sequence.txt:4099309
        Note you can't match on '@' as that is a valid quality value (Q=0), wherease '+' is not used in Illumina FASTQ. This is easier than dividing by four in your head... although the shell can help us there too:

        Code:
        echo $[ `wc -l < s_6_sequence.txt` / 4 ]
        
        4525658
        Enjoy

        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
        18 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 04-10-2024, 10:19 PM
        0 responses
        22 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 04-10-2024, 09:21 AM
        0 responses
        17 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 04-04-2024, 09:00 AM
        0 responses
        49 views
        0 likes
        Last Post seqadmin  
        Working...
        X