I have got some illumina data in a a merged BAM file for a particular sample and I would like to convert it back to per lane data files (BAM or fastq) so it would be compatible with the analysis pipeline. Any ideas on the best way to do this?
Unconfigured Ad
Collapse
X
-
When I did this a few days ago (with only knowledge of command-line stuff and samtools), here's a rough guide to what I did:- Extract header from BAM file Code:
samtools view -H infile.bam > header.sam
- filter out lanes from BAM file, add header Code:
(cat header.sam; samtools view infile.bam | grep '^DATA...._<lane>_.') > out_lane<lane>.sam
- convert SAM to BAM Code:
samtools view -S out_lane<lane>.sam -b > out_lane<lane>.bam
There's probably some better way, but it would have taken longer for me to find than for me to just do it and deal with the additional overhead of storing temporary SAM files per lane.
- Extract header from BAM file
-
If the lane info is stored in RG tags you can use this: http://genome.sph.umich.edu/wiki/SplitBam
Comment
-
-
SplitBam looks ideal, but I can't find a download link for it. Any ideas?
And thanks for the other suggestion too, that makes a lot of sense.
--EDIT--
Actually it looks like there are no @RG in the headers ... Oh Dear.Last edited by danielsbrewer; 09-29-2011, 01:03 AM.
Comment
-
-
Originally posted by danielsbrewer View PostSplitBam looks ideal, but I can't find a download link for it. Any ideas?
And thanks for the other suggestion too, that makes a lot of sense.
--EDIT--
Actually it looks like there are no @RG in the headers ... Oh Dear.Go here and either follow the instructions for retrieving the current development release from the source repository or download the tarball for the latest stable realese (0.1.4). Note that either way you are downloading the entire libStatGen toolkit, which you must then compile. SplitBam is merely one of the programs in the toolkit.Originally posted by jtladner View PostI am trying to do the exact same thing and I do have @RG tags, but I can not find a download link for SplitBam. Does anyone know how to download this program?
Jason
Comment
-
-
Originally posted by jtladner View PostI am trying to do the exact same thing and I do have @RG tags, but I can not find a download link for SplitBam. Does anyone know how to download this program?
Jason
splitBam is part of the bamUtil package, which i found it here https://github.com/Homebrew/homebrew-science and it was very easy to download it.
Comment
-
Latest Articles
Collapse
-
by SEQadmin2
Genomics studies in neuroscience face a special challenge due to the brain’s complexity and scarcity of samples. Mapping changes in cell type and state using conventional next-generation sequencing methods remains challenging. Advances in technologies like single-cell sequencing, spatial transcriptomics, and long-read sequencing have opened the door to deeper studies of the brain and diseases like Alzheimer’s, amyotrophic lateral sclerosis (ALS), and schizophrenia.
...-
Channel: Articles
07-09-2026, 11:10 AM -
-
by SEQadmin2
Cancer survival rates have significantly increased in the last few decades in the United States, reaching a combined 70% 5-year survival rate by 2021. Behind this number, there are years of research to find new therapies, drug targets, and early detection methods. But there is one core challenge that keeps slowing down these advances, and it’s about drug resistance.
There is no single reason why many patients don’t respond to treatment as expected. Cancer is...-
Channel: Articles
07-08-2026, 05:17 AM -
-
by GATTACATLove this - good data definitely starts from good input, and poor input can only give relatively poor data. I particularly like the mention of Nanodrop/absorbance based methods for quantification. It's such a toss up if you'll get an accurate reading or what amounts to a randomly generated number, and a lot of library/sequencing related issues can be traced back to poor quant.
-
Channel: Articles
07-01-2026, 11:43 AM -
ad_right_rmr
Collapse
News
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SEQadmin2, 07-13-2026, 10:26 AM
|
0 responses
20 views
0 reactions
|
Last Post
by SEQadmin2
07-13-2026, 10:26 AM
|
||
|
Started by SEQadmin2, 07-09-2026, 10:04 AM
|
0 responses
30 views
0 reactions
|
Last Post
by SEQadmin2
07-09-2026, 10:04 AM
|
||
|
Started by SEQadmin2, 07-08-2026, 10:08 AM
|
0 responses
18 views
0 reactions
|
Last Post
by SEQadmin2
07-08-2026, 10:08 AM
|
||
|
Started by SEQadmin2, 07-07-2026, 11:05 AM
|
0 responses
34 views
0 reactions
|
Last Post
by SEQadmin2
07-07-2026, 11:05 AM
|
Comment