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
          Essential Discoveries and Tools in Epitranscriptomics
          by seqadmin


          The field of epigenetics has traditionally concentrated more on DNA and how changes like methylation and phosphorylation of histones impact gene expression and regulation. However, our increased understanding of RNA modifications and their importance in cellular processes has led to a rise in epitranscriptomics research. “Epitranscriptomics brings together the concepts of epigenetics and gene expression,” explained Adrien Leger, PhD, Principal Research Scientist on Modified Bases...
          Yesterday, 07:01 AM
        • 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

        ad_right_rmr

        Collapse

        News

        Collapse

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