Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • ion torrent proton short reads contamination

    i had ran a PI chip yesterday.And today i found that there was something wrong in the report.Just as shown in the pdf file,a short reads-about 30 bps was mixed into the final library.could anybody give me some suggestion about the origin of the short reads.Thanks!
    Attached Files

  • #2
    It might be spurious amplification... have you considered extracting those short-length reads from the BAM file, i.e. with a Python script, and see where they map?

    Comment


    • #3
      ...for example, these are (humble) Python 3 scripts that use pysam, pandas and plotly:

      first I would check the exact position of the short reads peak:

      Code:
      import pysam
      import pandas as pd
      from plotly.offline import plot
      import plotly.graph_objs as go
      
      bamfiles = ['IonXpress_003.bam',
                  'IonXpress_004.bam',
                  'IonXpress_007.bam',
                  'IonXpress_005.bam'
                  ]
      
      
      # length_data will hold data counts for every bam file
      length_data = []
      
      # collect sequence length counts
      for file in bamfiles:
          print("Reading file: " + file)
          bam = pysam.AlignmentFile(file, "rb")
          selected = bam.fetch()
          # alen = length of the aligned reference segment
          # qlen = length of the aligned read segment
          # rlen = length of the aligned read segment, including soft-clipped bases
          reads_xlen = [read.alen for read in selected]
          counts = [(i, reads_xlen.count(i)) for i in range(min(reads_xlen), max(reads_xlen))]
          length_data.append(pd.DataFrame(counts))
      
      # create traces
      data = [go.Scatter(x=bamdata[0], y=bamdata[1], mode = 'lines', name=bamfiles[i]) for i, bamdata in enumerate(length_data)]
          
      # plot data
      scatterplot = plot({'data': data})
      See exactly at which nucleotide the peak is, and then check if there is any similarity within the most common sequences...

      Code:
      import pysam
      
      # choose a file that contains the peak, select the peak position
      file = 'IonXpress_004.bam'
      peakpos = 29 # let's say the peak was at 29 bases
      
      # retrieve all sequences from reads with the alignment length you specified
      bam = pysam.AlignmentFile(file, "rb")
      selected = bam.fetch()
      reads = [read for read in selected if read.alen == peakpos]
      reads_seq = [read.seq for read in reads]
      
      # you can count them
      print("Number of sequences retrieved:", len(reads_seq))
      
      # see how many different entries you have
      entries = set(reads_seq)
      print("Number of different entries:", len(entries))
      
      # categorize them
      cat_entries = [(entry, reads_seq.count(entry)) for entry in entries]
      cat_entries.sort(key = lambda x:x[1])
      
      # print the 20 most common sequences
      print('\nMost common sequences:')
      print('[hits] sequence')
      for i in range(20):
          print('[{0}] {1}'.format(cat_entries[i][1], cat_entries[i][0]))
      Last edited by r.rosati; 08-23-2016, 12:20 PM.

      Comment


      • #4
        Thanks for your help!I had send the bam files to the technical support.His anwser was that the short reads were primer dimers.He suggested us to optimize the experiment protocal.So we will improve the experiment pipeline and run one sample on the PGM to test the propose!

        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