Unconfigured Ad

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • bioenvisage
    Member
    • Oct 2009
    • 40

    #1

    sort

    can any one help me , how to sort a file to have only unique reads, the format is the following

    >HWI-EAS373:1:1:10:1119#0/1
    GGAGCATTGCGACATTTAGCTNATTCAGCGGCATGGAAGG
    >HWI-EAS373:1:1:10:1119#0/2
    GGAATAAGCAGAGTGAGCATAAGAGAAGATGNCTTCATGC
    >HWI-EAS373:1:1:11:1157#0/1
    CGGGAATCCGGGACTTGAAAANATTCAGAACACTTTTCAG
    >HWI-EAS373:1:1:11:1157#0/2
    GATCCAGTTAAGGCAGAGATTGAGAGTTCACNGGAGAGTA
    >HWI-EAS373:1:1:11:986#0/1
    GTTTCCTCATACTAGACAACANATTCATGGTGTTTGAAGC
    >HWI-EAS373:1:1:11:986#0/2
    CCGGATGAGAGAAAAAGGGCTGCTGCAGCCANGGTTGAGC
    >HWI-EAS373:1:1:11:1274#0/1
    CGTCCTCCTCTCCTCCTGTCGNCTCCAGCGCACCA
  • alex_kozik
    Junior Member
    • Dec 2008
    • 3

    #2
    I am using combination of Unix 'sort' and 'uniq' commands to generate non-redundant fasta file, details are here:

    Comment

    • simonandrews
      Simon Andrews
      • May 2009
      • 870

      #3
      Note that there weren't any repeated sequences in your example dataset, but something like this should pull out unique sequences. It will be a bit memory heavy since it needs to keep all unique sequences in memory but there's no getting around that really.

      Code:
      #!/usr/bin/perl
      use warnings;
      use strict;
      
      my %kept;
      my %rejected;
      
      while(my $header = <>) {
        chomp $header;
        my $seq = <>;
        chomp $seq;
        next if (exists $rejected{$seq});
        if (exists $kept{$seq}) {
          delete $kept{$seq};
          $rejected{$seq} = 1;
        }
        else {
          $kept{$seq} = $header;
        }
      }
      
      foreach (keys %kept) {
        print $kept{$_},"\n",$_,"\n";
      }
      
      warn "Rejected ".(scalar keys %rejected)." sequences\n";

      Comment

      • cariaso
        Member
        • Jan 2008
        • 31

        #4
        grep -v '>' myfasta | sort -u

        is a short solution. But perhaps you need fasta? with or without original ids?

        Comment

        • Dave S.
          Junior Member
          • Jan 2010
          • 5

          #5
          Originally posted by simonandrews View Post
          Note that there weren't any repeated sequences in your example dataset, but something like this should pull out unique sequences. It will be a bit memory heavy since it needs to keep all unique sequences in memory but there's no getting around that really.
          Using a combination of Bio::SeqIO and Digest::MD5 you can generate signatures for all the sequences traversed and only keep the MD5 signatures in memory. Works best when the average sequence is much longer than the MD5 signature.

          The code is left as a homework exercise for bioenvisage.

          Comment

          • Fabien Campagne
            Member
            • Feb 2010
            • 39

            #6
            We've implemented an efficient two-pass algorithm in Goby (see my other post). Here's how to proceed once you have downloaded the tool:

            If you have a fasta/fastq format, first convert to compact format:
            java -Xmx3g -jar goby.jar -m fasta-to-compact with-redundancy.fasta
            (The file with-redundancy.compact-reads should have been created.)
            Use the tally-reads mode to calculate how many times each sequence appears in the input:
            java -Xmx3g -jar goby.jar -m tally-reads with-redundancy.compact-reads -f myfilter
            Tally reads leverages sequence digests and works in two passes to minimize memory usage. Input files can contain tens of millions of reads.
            Convert back to fasta, excluding sequences that appear more than once:
            java -Xmx3g -jar goby.jar -m compact-to-fasta -i with-redundancy.compact-reads -f myfilter-keep.filter -o unique-reads.fa

            See our wiki for nicer formatting and other options:
            Last edited by Fabien Campagne; 02-02-2010, 02:24 PM.

            Comment

            • flxlex
              Moderator
              • Nov 2008
              • 412

              #7
              awk will do a much faster job than sort | uniq -c (which I used a lot before I discovered awk). First, use grep to get the lines not starting with '>', then use awk. Same as with @simonandrews solution: it will store all unique reads in memory.

              grep -v '>' INFILE | awk '{r[$0]=1}END{for (x in r){print x}}'

              Comment

              Latest Articles

              Collapse

              • SEQadmin2
                Beyond CRISPR/Cas9: Understand, Choose, and Use the Right Genome Editing Tool
                by SEQadmin2



                CRISPR/Cas9 sparked the gene editing revolution for both research and therapeutics.1 But this system still showed severe issues that limited its applications. The most prominent were the heavy reliance on PAM sequences, delivery limitations, double-stranded breaks that prompt unintended edits and cell death, and editing inefficiency (both in targeting and in knock-in reliability).

                Despite this, “CRISPR helped turn genome editing from a specialized technique into
                ...
                07-31-2026, 11:01 AM
              • SEQadmin2
                Proteomic Platforms: How to Choose the Right Analytical Strategy to Improve Detection and Clinical Applications
                by SEQadmin2


                Proteomics platforms are evolving rapidly, with advances in mass spectrometry and affinity-based approaches expanding what researchers can detect and at what scale. As the field moves toward deeper proteome coverage and clinical applications, scientists face an increasingly complex landscape of tools. This article will explore how researchers are navigating these choices to find the right platform for their work.

                The systematic characterization of the human proteome has
                ...
                07-20-2026, 11:48 AM

              ad_right_rmr

              Collapse

              News

              Collapse

              Topics Statistics Last Post
              Started by SEQadmin2, 08-06-2026, 07:41 AM
              0 responses
              23 views
              0 reactions
              Last Post SEQadmin2  
              Started by SEQadmin2, 08-03-2026, 10:13 AM
              0 responses
              37 views
              0 reactions
              Last Post SEQadmin2  
              Started by SEQadmin2, 07-31-2026, 02:55 AM
              0 responses
              43 views
              0 reactions
              Last Post SEQadmin2  
              Started by SEQadmin2, 07-24-2026, 12:17 PM
              0 responses
              26 views
              0 reactions
              Last Post SEQadmin2  
              Working...