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!
Unconfigured Ad
Collapse
X
-
...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:
See exactly at which nucleotide the peak is, and then check if there is any similarity within the most common sequences...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})
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
-
-
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
-
by SEQadmin2
Data variability is still an issue in sequencing technologies despite the advances in reproducibility and accuracy of these platforms. But the problem does not originate in the sequencing itself, but in the previous steps, before the sample reaches the sequencer.
The first step is collection, followed by preservation and sample preparation for analysis. Most scientists overlook those steps, but not being careful might just be skewing the experiment’s results.
...-
Channel: Articles
06-02-2026, 10:05 AM -
-
by SEQadmin2
With the launch of new single-cell sequencing platforms in 2026, the field stands at an exciting inflection point. This article surveys the most impactful advances in the field and discusses how they’re reshaping research in cancer, immunology, and beyond.
Introduction
Single-cell sequencing technologies have undergone remarkable advances over the past decade, transitioning from low-throughput experimental approaches to highly scalable platforms capable of...-
Channel: Articles
05-22-2026, 06:42 AM -
ad_right_rmr
Collapse
News
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SEQadmin2, 06-05-2026, 10:09 AM
|
0 responses
14 views
0 reactions
|
Last Post
by SEQadmin2
06-05-2026, 10:09 AM
|
||
|
Started by SEQadmin2, 06-04-2026, 08:59 AM
|
0 responses
26 views
0 reactions
|
Last Post
by SEQadmin2
06-04-2026, 08:59 AM
|
||
|
Started by SEQadmin2, 06-02-2026, 12:03 PM
|
0 responses
33 views
0 reactions
|
Last Post
by SEQadmin2
06-02-2026, 12:03 PM
|
||
|
Started by SEQadmin2, 06-02-2026, 11:40 AM
|
0 responses
23 views
0 reactions
|
Last Post
by SEQadmin2
06-02-2026, 11:40 AM
|
Comment