LevioSAM lifts over alignments accurately and efficiently using a VCF or a chain file.
-
Converting SAM/BAM records from one reference to another using either a VCF file or a chain file
-
Converting alignment information, including:
- Contig
- Position
- Alignmant flag
- CIGAR string
- Mate read information
- MD:Z and NM:i tag (optional)
-
Multithreading support
LevioSAM can be installed using:
- Conda (please make sure the version number is specified)
conda install -c conda-forge -c bioconda leviosam=0.5.1
docker pull alshai/leviosam
- Built from source using CMake or Make. See INSTALL.md for details.
LevioSAM can perform lift-over using a VCF file as the lift-over map. Please visit the VcfMap Usage Page for detailed instructions.
Quick run:
leviosam index -v <vcf> -s <sample_name> -p <output_prefix>
leviosam lift -a <sam> -l <lft> -p <output_prefix> -O bam
The levioSAM VcfMap index will be saved to <output_prefix>.lft
. The output will be saved to <output_prefix>.bam
.
We provide the Bowtie 2 (which are compatible with Bowtie, too!) and levioSAM indexes for the major-allele references based on the 1000 Genomes Project. Please navigate to the bowtie-majref repo for more comprehensive description and more resources.
We provide more detailed instructions of how to use levioSAM in common variant-aware reference pipelines (major-allele reference and personalized reference) in the levioSAM wiki.
If you'd like to perform lift-over using a chain file, please visit our new levioSAM2 page. We will not update chain-related updates in this repo.
LevioSAM can also perform lift-over using a chain file as the lift-over map since v0.5.0. Using ChainMap enables assembly-to-assembly lift-over and is usually faster. Please visit the ChainMap Usage Page for detailed instructions.
Quick run:
leviosam index -c a_to_b.chain -p a_to_b -F dest.fai
leviosam lift -C a_to_b.clft -a aligned_to_a.bam -p lifted_from_a -O bam
The levioSAM ChainMap index will be saved to a_to_b.clft
. The output will be saved to lifted_from_a.bam
.
Taher Mun, Nae-Chyun Chen, Ben Langmead, LevioSAM: Fast lift-over of variant-aware reference alignments, Bioinformatics, 2021;, btab396, https://doi.org/10.1093/bioinformatics/btab396