Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Identifying unique aptamer sequences

    Hello all.
    A biologist colleague has generated sequencing libraries based on a SELEX type of enrichment of artificial aptamers that have bound to bacterial cells. He will have Ion Torrent sequence (short read, single end) output (millions of reads per sample) and would like help with identifying sequences that uniquely or preferentially bind each bacterial strain. The aptamers are 80 nucleotides long and are generated randomly. There are several rounds of enrichment, so there will be sequences represented multiple times. Biological replicates will help find true positives.

    Ideally he would find sequences that are present exclusively in each bacterial strain's bound aptamer population. Initially we'll look at the full length aptamers but of course specific motifs present in different aptamers may be enriched.

    Does anyone know if there is a Bioconductor (or other) package that will already do this kind of counting short reads and comparing between samples?

    This can be done in Perl, for example, using hashes and counting each sequence (and potentially each kmer in the reads) but I suspect there will be a better way to do it. We don't wan to reinvent the wheel and would like to reuse anyone's good ideas and code.

    Any help or thoughts would be greatly appreciated.

    Donald

  • #2
    You may deal with aptamer sequences using only bash utilities with grep, awk, sort and uniq.
    First of all you have to put all sequences (one per line) in a file, then

    $ sort file | uniq -c | sort -k1,1n > counted_sequences

    You will end up with hundreds (or thousands) out of millions with a power law enrichment count.
    Once you have all files, counted, it's easy with grep to check counts across SELEX cycles or samples.

    HTH

    Comment


    • #3
      Many thanks for that dawe. Works nicely.
      Best wishes,
      Donald

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