Chromatogram File Utils
Project description
Chromatogram File Utils
For Sanger sequencing data visualizing, alignment, mutation calling, and trimming etc.
Demo
command to generate the demo above
cfutils mut --query ./data/B5-M13R_B07.ab1 --subject ./data/ref.fa --outdir ./data/ --plot
How to use?
- You can have mutation detection and visualization in one step using the command line.
cfutils mut --help
- You can also integrate the result matplotlib figures and use it as a python module.
An example:
import matplotlib.pyplot as plt
import numpy as np
from cfutils.parser import parse_abi
from cfutils.show import plot_chromatograph
seq = parse_abi("./data/B5-M13R_B07.ab1")
peaks = seq.annotations["peak positions"][100:131]
fig, axes = plt.subplots(2, 1, figsize=(12, 6), sharex=True)
plot_chromatograph(
seq,
region=(100, 130),
ax=axes[0],
show_bases=True,
show_positions=True,
color_map=dict(zip("ATGC", ["C0", "C2", "C1", "C4"])),
)
axes[1].bar(peaks, np.random.randn(len(peaks)), color="0.66")
plt.show()
How to install?
form pypi
(use this way ONLY, if you don't know what's going on)
pip install --user cfutils
manipulate the source code
- clone from github
git clone git@github.com:y9c/cfutils.git
- install the dependence
make init
- do unittest
make test
ChangeLog
- Reverse completement the chromatogram file. (Inspired by Snapgene)
- build as python package for pypi
- fix bug that highlighting wrong base
- replace blastn with buildin python aligner
TODO
-
call mutation by alignment and plot Chromatogram graphic
-
add a doc
-
change xaxis by peak location
-
fix bug that chromatogram switch pos after trim
-
wrap as a cli app
-
return quality score in output
-
fix issue that selected base is not in the middle
-
fix plot_chromatograph rendering bug
-
add projection feature to make align and assemble possible
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file cfutils-0.0.0.dev60.tar.gz
.
File metadata
- Download URL: cfutils-0.0.0.dev60.tar.gz
- Upload date:
- Size: 13.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.10.13 Darwin/23.2.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2d3e6dcd054358aa0cf8f03e015b9e5fae2c5b63fc009136d01483eb4a7e6e2a |
|
MD5 | 7377bf76b09ecd6ba127f63a4bb160f8 |
|
BLAKE2b-256 | 07b532a5a55014c9575cfcc73b25a6e0a5e570b12ad4716df741f73f9654e778 |
File details
Details for the file cfutils-0.0.0.dev60-py3-none-any.whl
.
File metadata
- Download URL: cfutils-0.0.0.dev60-py3-none-any.whl
- Upload date:
- Size: 15.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.10.13 Darwin/23.2.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63a3e080dd98fead8d12a343256acc3db405eeaf411e21f6ad72a0803f72c531 |
|
MD5 | 275b4f172477cf720e70ca943db1a1ca |
|
BLAKE2b-256 | ef9917b7d707964411fd1789929edb7171bb3b886e8f4de3556ecbb79e96852f |