Skip to main content

A light-weight python package for summarizing sequence coverage from SAM and BAM files

Project description

samsum

A light-weight python package for summarizing sequence coverage from SAM and BAM files

Codacy Badge codecov Build Status

Anaconda-Server Badge Anaconda-Server Badge Anaconda-Server Badge

Installation

Samsum is currently supported on Mac and Linux systems and has been tested primarily on Ubuntu operating systems (bionic and trusty distributions). It is a python package on the Python Package Index (PyPI) and can be installed using pip:

pip install samsum

Samsum can also be installed using conda with the command:

conda install -c bioconda samsum

You can also install samsum from source by cloning the directory from its GitHub page or downloading a GitHub release.

git clone https://github.com/hallamlab/samsum.git
cd samsum
python3 setup.py sdist
pip install dist/samsum*tar.gz

Usage

samsum stats will read either a SAM or BAM file (this functionality will be implemented soon) and rapidly count the number of reads mapped to each reference sequence (e.g. contigs, scaffolds) while also keeping track of the reads that remain unmapped. This all occurs within the C++ Python extension. It will then read the reference FASTA file to gather the lengths of each reference sequence. Combining the read counts and sequence lengths, it will then calculate:

  • fragments per kilobase per million (FPKM)
  • transcripts per milllion (TPM)

Command-line options

By default, reads with multiple identical alignments (i.e. mapping quality is 0) are not included in these calculations. This can be toggled off to include these alignments with the --m flag. Another option is to drop counts for reference sequences if only a portion of a sequence is mapped to. With the -p argument, you can control the minimum proportion a reference sequence needs to be covered for its read counts to be included in the output; all stats are otherwise set to 0.

An example command is:

samsum stats -f ref.fasta -a alignments.sam --multireads -p 0.5 -o output_dir/samsum_table.tsv

This will include all alignments, regardless of their mapping quality but only report alignments for reference sequences that were covered across at least 50% of their length.

API

Being a python package, samsum can also be readily imported into python code and used via its API.

The function generally desired would be ref_sequence_abundances. Usage could be:

from samsum import commands
sam="/home/user/reads_to_genome.sam"
fasta="/home/user/genome.fasta"
ref_seq_abunds = commands.ref_sequence_abundances(aln_file=sam, seq_file=fasta, min_aln=10, p_cov=0, map_qual=0)

The ref_seq_abunds object is a dictionary of RefSequence instances indexed by their header/sequence names. RefSequence objects have several variables that are of interest:

  • self.name is the name of the (reference) sequence or header
  • self.length is the length (in base-pairs) of the sequence
  • self.reads_mapped is the number of reads that were mapped
  • self.weight_total is the number of fragments (float) that were mapped to the sequence
  • self.fpkm is Fragments Per Kilobase per Million mapped reads
  • self.tpm is Transcripts Per Million mapped reads

Outputs

If samsum stats was executed, a "samsum_log.txt" file is written to the current working directory (i.e. where samsum was executed from). A comma-separated value (CSV) file with the fields "QueryName", "RefSequence", "ProportionCovered", "Coverage", "Fragments", "FPKM" and "TPM" is written to a file path specified on the command-line, or by default "samsum_table.csv". A TSV file can be written instead if the sep argument was modified to 'tab'.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

samsum-0.1.2.tar.gz (1.7 MB view hashes)

Uploaded Source

Built Distributions

samsum-0.1.2-cp38-cp38-manylinux2010_x86_64.whl (565.4 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

samsum-0.1.2-cp38-cp38-macosx_10_9_x86_64.whl (71.0 kB view hashes)

Uploaded CPython 3.8 macOS 10.9+ x86-64

samsum-0.1.2-cp37-cp37m-manylinux2010_x86_64.whl (566.9 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

samsum-0.1.2-cp37-cp37m-macosx_10_6_intel.whl (84.7 kB view hashes)

Uploaded CPython 3.7m macOS 10.6+ intel

samsum-0.1.2-cp36-cp36m-manylinux2010_x86_64.whl (565.0 kB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

samsum-0.1.2-cp36-cp36m-macosx_10_6_intel.whl (84.7 kB view hashes)

Uploaded CPython 3.6m macOS 10.6+ intel

samsum-0.1.2-cp35-cp35m-manylinux2010_x86_64.whl (564.5 kB view hashes)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

samsum-0.1.2-cp35-cp35m-macosx_10_6_intel.whl (84.7 kB view hashes)

Uploaded CPython 3.5m macOS 10.6+ intel

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page