Does anyone have a suggested best practice utility for this?
Header Leaderboard Ad
Collapse
Stand Alone Bam to FASTQ
Collapse
Announcement
Collapse
No announcement yet.
X
-
What are you trying to do?
Do you want to pull out the reads as FASTQ records?
Do you care about the strand used for reads which mapped to the reverse stand?
Do you care about how paired end reads are named?
You could try seqret from EMBOSS 6.3.0,
http://lists.open-bio.org/pipermail/...ly/003947.html
-
That is no problem. It's also some point that confused me, btw is still confusing me.
The experince I made, ist that the aligned quality values (qv) in the sam files from e.g. bowtie are different from the ones in the original file. I think the values you get after the alignment are the qv from the alignment and not the one from the original file.
Comment
-
Originally posted by dcfargo View PostI do care about recovery of all of the information.
I'd like to essentially recover all the initial text information that went into making the BAM file.
e.g. Support you had some paired FASTQ reads like this:
Code:@SRR001666.1/1 071112_SLXA-EAS1_s_7:5:1:817:345 length=36 GGGTGATGGCCGCTGCCGATGGCGTCAAATCCCACC + IIIIIIIIIIIIIIIIIIIIIIIIIIIIII9IG9IC @SRR001666.1/2 071112_SLXA-EAS1_s_7:5:1:817:345 length=36 AAGTTACCCTTAACAACTTAAGGGTTTTCAAATAGA + IIIIIIIIIIIIIIIIIIIIDIIIIIII>IIIIII/ ...
If on converting SAM/BAM back to FASTQ you specify suffixes of /1 and /2, the best you can hope to recover is:
Code:@SRR001666.1/1 GGGTGATGGCCGCTGCCGATGGCGTCAAATCCCACC + IIIIIIIIIIIIIIIIIIIIIIIIIIIIII9IG9IC @SRR001666.1/2 AAGTTACCCTTAACAACTTAAGGGTTTTCAAATAGA + IIIIIIIIIIIIIIIIIIIIDIIIIIII>IIIIII/ ...
Comment
-
Well you don't have to think that complicated. There are two libraries you can use, and than you have your converter. I e.g. prefer Java and use biojava to read/write FastQ (http://www.biojava.org/wiki/BioJavaownload_1.7.1) and use samtools (http://sourceforge.net/projects/picard/files/) to read BAM/SAM files (it's the same).
Then you only have to transform from a SAM Object to a FastQBuilder:
public FastqBuilder convert(SAMRecord element2) {
FastqBuilder builder = new FastqBuilder();
builder.withDescription(element2.getReadName());
builder.withQuality(element2.getBaseQualityString());
builder.withSequence(element2.getReadString());
return builder;
}
that's the easiest way.
good luck
Comment
-
Originally posted by dcfargo View PostThanks so much.
Given some information may be lost and we'll just have to accept that would the best model for conversion be 2 steps such as:
1) SAMtools for BAM -> SAM
2) followed by a home made script for SAM -> FASTQ
As mentioned above, EMBOSS 6.3.x can do SAM/BAM direct to FASTQ, although it may not do exactly what you want it to do.
You could also write a script to go from BAM to FASTQ, for example using pysam to access the samtools C API from Python.
Personally I've been doing with SAM/BAM to FASTQ in Biopython (to recover reads to redo a mapping), but this is with an experimental branch and is not ready for general use.
Comment
-
Originally posted by Martin R View PostWell you don't have to think that complicated. There are two libraries you can use, and than you have your converter. I e.g. prefer Java and use biojava to read/write FastQ (http://www.biojava.org/wiki/BioJavaownload_1.7.1) and use samtools (http://sourceforge.net/projects/picard/files/) to read BAM/SAM files (it's the same).
Then you only have to transform from a SAM Object to a FastQBuilder:
public FastqBuilder convert(SAMRecord element2) {
FastqBuilder builder = new FastqBuilder();
builder.withDescription(element2.getReadName());
builder.withQuality(element2.getBaseQualityString());
builder.withSequence(element2.getReadString());
return builder;
}
that's the easiest way.
good luck
Also I would reverse complement any reads mapped to the reverse strand to recover them in their original orientation pre-mapping.
Comment
-
Originally posted by maubp View PostAs mentioned above, EMBOSS 6.3.x can do SAM/BAM direct to FASTQ, although it may not do exactly what you want it to do.
http://lists.open-bio.org/pipermail/...st/000667.html
http://lists.open-bio.org/pipermail/...st/000668.html
This should be resolved in the next patch or point release though
http://lists.open-bio.org/pipermail/...st/000669.html
Peter
Comment
-
For the sake of completeness, I will just mention that you can also achieve this with my Genozip program:
genozip file.bam <---- compresses the BAM file
genocat file.bam.genozip --output file.fq.gz <---- converts it to FASTQ
See documentation here: https://genozip.com/sam2fq.html
Paper here: https://www.researchgate.net/publica...ata_Compressor
Comment
-
Latest Articles
Collapse
-
by seqadmin
The introduction of single-cell sequencing has advanced the ability to study cell-to-cell heterogeneity. Its use has improved our understanding of somatic mutations1, cell lineages2, cellular diversity and regulation3, and development in multicellular organisms4. Single-cell sequencing encompasses hundreds of techniques with different approaches to studying the genomes, transcriptomes, epigenomes, and other omics of individual cells. The analysis of single-cell sequencing data i
...-
Channel: Articles
01-24-2023, 01:19 PM -
-
by seqadminSingle-cell sequencing is a technique used to investigate the genome, transcriptome, epigenome, and other omics of individual cells using high-throughput sequencing. This technology has provided many scientific breakthroughs and continues to be applied across many fields, including microbiology, oncology, immunology, neurobiology, precision medicine, and stem cell research.
The advancement of single-cell sequencing began in 2009 when Tang et al. investigated the single-cell transcriptomes...-
Channel: Articles
01-09-2023, 03:10 PM -
ad_right_rmr
Collapse
Comment