Skip to main content

Chromatogram File Utils

Project description

cfutils

Chromatogram File Utils

for sanger sequencing data visualizing, alignment, mutation calling, and trimming etc.

Demo

plot chromatogram with mutation

code to generate demo above

import matplotlib.pyplot as plt
from cfutils.parser import parse_abi, parse_fasta
from cfutils.align import align
from cfutils.show import highlight_base, plot_chromatograph

query_record = parse_abi('./data/B5-M13R_B07.ab1', trim=False)
subject_record = parse_fasta('./data/3kref.fa')
mutations = align(query_record, subject_record, ignore_ambig=True)
selected_mutation = mutations[5][2]
print(selected_mutation)
fig, ax = plt.subplots(1, 1, figsize=(15, 6))
plot_chromatograph(
    query_record, ax, xlim=[selected_mutation - 10, selected_mutation + 10])
highlight_base(selected_mutation, query_record, ax)
plt.savefig('./test.pdf')

How to install?

form pypi

(use this way ONLY, if you don't know what't going on)

pip install cfutils

manipulate the source code

clone from github

git clone git@github.com:yech1990/cfutils.git 

install dependance

make init

do unittest

make test

How to use?

import cfutils as cf

ChangeLog

  • build as python package for pypi
  • fix bug that highlihgting wrong base

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

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

cfutils-0.0.0.dev27.tar.gz (384.5 kB view details)

Uploaded Source

File details

Details for the file cfutils-0.0.0.dev27.tar.gz.

File metadata

File hashes

Hashes for cfutils-0.0.0.dev27.tar.gz
Algorithm Hash digest
SHA256 9c32fbea7d6316d1b41c124e50362f45ca436ff0408c154a6f12aeb53228976c
MD5 c941cc9f9c747eadf7ec9ea14e8000ac
BLAKE2b-256 4e330cf5cb2a3f9d61fe51e16f851f7227ffbdd14218ce0d390e0e99a70912d4

See more details on using hashes here.

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