Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Pull out unknown primers from fastq file?

    Hello,
    I have fastq files from 16S sequencing data. The reads in these files have 6 different primers in them and I am wondering if anyone knows of a method where I can pull out the beginning of the reads, maybe 20-30 bps and then look for consensus sequences within these? This will then give me the primer sequence information for the 6 primers which is proprietary information from the company where the kits are made.

    Can anyone think of a way to do this?
    Thanks!

  • #2
    Something like that should be pretty easy to do with any scripting language with fastq parsing libraries (or heck maybe manually inspecting the fastq since there's only 6 primers if you're not keen on programming).

    Example R psuedocode (only because that's what I'm comfortable with)
    library("ShortRead"); #load the library for fastq manipulation
    fq_data <- readFastq("reads.fastq.gz"); #read in fastq data
    base_info <- sread(fq_data); #get just the base calls
    first20 <- substring(base_info, 1, 20); #get the first 20bp of each read

    then you could do something like
    table(first20) to see the frequency of different 20bp sequences
    alphabetFrequency(first20) to get consensus sequences

    Comment


    • #3
      IIRC, some FASTQ quality control pipelines will spot and report possible primer sequences.

      Comment


      • #4
        maubp,
        I would love to find a tool that will spot and report possible primers. Can you be more specific?

        I tried to sort and tally up the sequences and i am not finding them this way. Which tool are you referring to?

        Thanks a bunch.
        Jen

        Comment


        • #5
          e.g. FASTQC reports overrepresented sequences which ought to spot your primers:

          Comment


          • #6
            If you have not solved this problem yet, there's another option, using BBTools:

            reformat.sh in=reads.fq out=trimmed.fq ftr=19

            This will trim all but the first 20 bases (all bases after position 19, zero-based).

            kmercountexact.sh in=trimmed.fq out=counts.txt fastadump=f mincount=10 k=20 rcomp=f
            This will generate a file containing the counts of all 20-mers that occurred at least 10 times, in a 2-column format that is easy to sort in Excel. For example:

            Code:
            ACCGTTACCGTTACCGTTAC	100
            AAATTTTTTTCCCCCCCCCC	85
            ...etc. If the primers are 20bp long, they should be pretty obvious.

            Comment


            • #7
              Hi Brian,
              How should I cite your tool in a manuscript in prep that I am doing? Do you have a reference or should I use your website?
              Thanks,
              Jen

              Comment


              • #8
                Hi Jen,

                My tools are all still unpublished, so please just cite my name and website. Thanks!

                -Brian

                Comment

                Latest Articles

                Collapse

                • seqadmin
                  Genetic Variation in Immunogenetics and Antibody Diversity
                  by seqadmin



                  The field of immunogenetics explores how genetic variations influence immune responses and susceptibility to disease. In a recent SEQanswers webinar, Oscar Rodriguez, Ph.D., Postdoctoral Researcher at the University of Louisville, and Ruben Martínez Barricarte, Ph.D., Assistant Professor of Medicine at Vanderbilt University, shared recent advancements in immunogenetics. This article discusses their research on genetic variation in antibody loci, antibody production processes,...
                  11-06-2024, 07:24 PM
                • seqadmin
                  Choosing Between NGS and qPCR
                  by seqadmin



                  Next-generation sequencing (NGS) and quantitative polymerase chain reaction (qPCR) are essential techniques for investigating the genome, transcriptome, and epigenome. In many cases, choosing the appropriate technique is straightforward, but in others, it can be more challenging to determine the most effective option. A simple distinction is that smaller, more focused projects are typically better suited for qPCR, while larger, more complex datasets benefit from NGS. However,...
                  10-18-2024, 07:11 AM

                ad_right_rmr

                Collapse

                News

                Collapse

                Topics Statistics Last Post
                Started by seqadmin, Today, 11:09 AM
                0 responses
                24 views
                0 likes
                Last Post seqadmin  
                Started by seqadmin, Today, 06:13 AM
                0 responses
                20 views
                0 likes
                Last Post seqadmin  
                Started by seqadmin, 11-01-2024, 06:09 AM
                0 responses
                30 views
                0 likes
                Last Post seqadmin  
                Started by seqadmin, 10-30-2024, 05:31 AM
                0 responses
                21 views
                0 likes
                Last Post seqadmin  
                Working...
                X