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
          Best Practices for Single-Cell Sequencing Analysis
          by seqadmin



          While isolating and preparing single cells for sequencing was historically the bottleneck, recent technological advancements have shifted the challenge to data analysis. This highlights the rapidly evolving nature of single-cell sequencing. The inherent complexity of single-cell analysis has intensified with the surge in data volume and the incorporation of diverse and more complex datasets. This article explores the challenges in analysis, examines common pitfalls, offers...
          06-06-2024, 07:15 AM
        • seqadmin
          Latest Developments in Precision Medicine
          by seqadmin



          Technological advances have led to drastic improvements in the field of precision medicine, enabling more personalized approaches to treatment. This article explores four leading groups that are overcoming many of the challenges of genomic profiling and precision medicine through their innovative platforms and technologies.

          Somatic Genomics
          “We have such a tremendous amount of genetic diversity that exists within each of us, and not just between us as individuals,”...
          05-24-2024, 01:16 PM

        ad_right_rmr

        Collapse

        News

        Collapse

        Topics Statistics Last Post
        Started by seqadmin, Yesterday, 06:58 AM
        0 responses
        13 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 06-06-2024, 08:18 AM
        0 responses
        20 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 06-06-2024, 08:04 AM
        0 responses
        18 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 06-03-2024, 06:55 AM
        0 responses
        13 views
        0 likes
        Last Post seqadmin  
        Working...
        X