BAM/SAM to FASTA conversion
6
5
Entering edit mode
9.2 years ago
biolab ★ 1.4k

Hi everone,

I searched Biostars for BAM/SAM to FASTA conversion method, and found the tools EMBOSS Picard could do this (Convert Bam File To Fasta File). I am wondering is there any perl script to accomplish this work? I should note that my seq data is strand-specific seq, so the command samtools view filename.bam | awk '{OFS="\t"; print ">"$1"\n"$10}' may not be very good.

I appreciate any of your solutions. Thanks a lot!

sam bam • 77k views
ADD COMMENT
26
Entering edit mode
6.2 years ago
Carambakaracho ★ 3.2k

For future record: samtools versions >1.3 can convert bam to fasta directly via samtools fasta

samtools --help

Program: samtools (Tools for alignments in the SAM format)
Version: 1.4 (using htslib 1.4)

Usage:   samtools <command> [options]

Commands:
  [...]
  -- File operations
     [...]
     fastq          converts a BAM to a FASTQ
     fasta          converts a BAM to a FASTA
  [...]
ADD COMMENT
15
Entering edit mode
9.2 years ago

The advice in the post you link to is greatly outdated. One of the reasons we should revisit these posts. There are far easier/faster ways to accomplish the same task.

The latest versions of samtools have the bam2fq command. Chain that to seqtk seq like so:

samtools bam2fq input.bam | seqtk seq -A > output.fa
ADD COMMENT
0
Entering edit mode

Hi Istvan, thank you very much for your answer. It's much helpful for my work. I just have two more minor questions: (1) my samtools version is Version: 0.1.8 (r613). I did not see samtools bam2fq function, so I need to update samtools? (2) Additionally is seqtk inside samtools? If not, where to get it? Thanks a lot!

ADD REPLY
2
Entering edit mode

You need to update samtools to at least 1.1 http://www.htslib.org/

Get seqtk from https://github.com/lh3/seqtk see also How To Obtain And Install Seqtk

ADD REPLY
0
Entering edit mode

Hi Istvan, your answer is really helpful.

ADD REPLY
5
Entering edit mode
6.8 years ago
Chadi Saad ▴ 100

You need to add '-' for seqtk in order to read from stdin :

samtools bam2fq input.bam | seqtk seq -A - > output.fa
ADD COMMENT
0
Entering edit mode

You can add - but it is not necessary.

ADD REPLY
3
Entering edit mode
6.2 years ago
GenoMax 141k

reformat.sh from BBMap suite will do the conversion efficiently.

reformat.sh in=your.bam out=seq.fa
reformat.sh in=your.sam out=seq.fa
ADD COMMENT
2
Entering edit mode
3.7 years ago

samtools fasta input.bam > output.fasta

ADD COMMENT
1
Entering edit mode
6.2 years ago

Via bam2bed and bed2faidxsta.pl:

$ bam2bed < reads.bam | bed2faidxsta.pl > reads.fa

Or sam2bed:

$ sam2bed < reads.sam | bed2faidxsta.pl > reads.fa
ADD COMMENT
0
Entering edit mode

I followed your instruction and even copied the unzipped bed2faidxstal.pl to the target folder, I got error "(base) bieniaszs-ipro:K20 bieniaszlab$ sam2bed < NL43_5562_filterredreads_header.sam | bed2faidxsta.pl > NL43_5562_filterredreads_header.fa -bash: bed2faidxsta.pl: command not found".

Then I add "perl" before the bed2faidxstal.pl, I still got error as below:

(base) bieniaszs-ipro:K20 bieniaszlab$ sam2bed < NL43_5562_filterredreads_header.sam | perl bed2faidxsta.pl > NL43_5562_filterredreads_header.fa
[E::fai_build3_core] Failed to open the file /Users/bieniaszlab/miniconda3/data/K_SRF11_U/K_20/K20/NL43_WT_CLIP.fa.gz
[faidx] Could not load fai index of /Users/bieniaszlab/miniconda3/data/K_SRF11_U/K_20/K20/NL43_WT_CLIP.fa.gz
[E::fai_build3_core] Failed to open the file /Users/bieniaszlab/miniconda3/data/K_SRF11_U/K_20/K20/NL43_WT_CLIP.fa.gz
[faidx] Could not load fai index of /Users/bieniaszlab/miniconda3/data/K_SRF11_U/K_20/K20/NL43_WT_CLIP.fa.gz
[E::fai_build3_core] Failed to open the file /Users/bieniaszlab/miniconda3/data/K_SRF11_U/K_20/K20/NL43_WT_CLIP.fa.gz
[faidx] Could not load fai index of /Users/bieniaszlab/miniconda3/data/K_SRF11_U/K_20/K20/NL43_WT_CLIP.fa.gz
[E::fai_build3_core] Failed to open the file /Users/bieniaszlab/miniconda3/data/K_SRF11_U/K_20/K20/NL43_WT_CLIP.fa.gz
ADD REPLY
0
Entering edit mode

Put the directory containing the Perl script into your environment PATH, or run it with Perl. Make sure your FASTA is indexed with samtools.

ADD REPLY
0
Entering edit mode

Thanks. I need FASTA output from SAM input, you mean to make sure my SAM file (not FASTA file) is indexed right?

ADD REPLY
1
Entering edit mode

No, I mean that your reference genome FASTA must be indexed, in order to get out FASTA based on the BED coords that come out of the SAM conversion step. (Sorry for brevity, I was on a cell phone. Feel free to follow up if this isn't clear.)

ADD REPLY

Login before adding your answer.

Traffic: 1826 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6