Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • easy way to assemble 50% of reads?

    Is there an easy way to separate a large fastq file of raw reads in half? I would imagine this should be pretty easy. I want to see how assembling half of my reads would do with some command... but I also have access to CLC and there doesn't seem to be a way to specify 50% of reads. This is a 70M+ 100 bp dataset.

  • #2
    Hi,

    Open the sequencelist switch to table view (5th icon below the sequences). Select a number of sequences and press "create sequencelist".

    best
    Patrick

    Comment


    • #3
      Use awk or grep or something to filter by the tile.

      Or use unix head to get the top half of the file.

      Comment


      • #4
        If you know how many lines are in your file you can use the split command

        $ wc -l file.fastq
        100 file.fastq

        $ split -l 50 file.fastq

        Comment


        • #5
          The head command in Linux also alllows you to extract a number of lines from the start of the file (or use the tail command for the end of the file), without splitting the whole file:

          In analogy to the above:

          $ wc -l file.fastq
          100 file.fastq

          $ head -n 50 file.fastq > halfAFile.fastq

          cheers

          Micha

          Comment


          • #6
            The head command in Linux also alllows you to extract a number of lines from the start of the file (or use the tail command for the end of the file)
            FWIW, there's also the split command:

            Code:
            split -n 2 file.fa file.split.fa. # for splitting a file into two
            But bear in mind that raw reads from NGS runs frequently have low-quality reads near the start and end of the file, so you'll get a bit of quality bias from choosing a specific half of the file.
            Last edited by gringer; 11-11-2013, 08:33 PM.

            Comment

            Latest Articles

            Collapse

            • seqadmin
              Recent Innovations in Spatial Biology
              by seqadmin


              Spatial biology is an exciting field that encompasses a wide range of techniques and technologies aimed at mapping the organization and interactions of various biomolecules in their native environments. As this area of research progresses, new tools and methodologies are being introduced, accompanied by efforts to establish benchmarking standards and drive technological innovation.

              3D Genomics
              While spatial biology often involves studying proteins and RNAs in their...
              01-01-2025, 07:30 PM
            • seqadmin
              Advancing Precision Medicine for Rare Diseases in Children
              by seqadmin




              Many organizations study rare diseases, but few have a mission as impactful as Rady Children’s Institute for Genomic Medicine (RCIGM). “We are all about changing outcomes for children,” explained Dr. Stephen Kingsmore, President and CEO of the group. The institute’s initial goal was to provide rapid diagnoses for critically ill children and shorten their diagnostic odyssey, a term used to describe the long and arduous process it takes patients to obtain an accurate...
              12-16-2024, 07:57 AM

            ad_right_rmr

            Collapse

            News

            Collapse

            Topics Statistics Last Post
            Started by seqadmin, 01-09-2025, 04:04 PM
            0 responses
            433 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 01-09-2025, 09:42 AM
            0 responses
            441 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 01-08-2025, 03:17 PM
            0 responses
            455 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 01-03-2025, 11:18 AM
            1 response
            50 views
            1 like
            Last Post Tonia
            by Tonia
             
            Working...
            X