由於語法渲染問題而影響閱讀體驗, 請移步博客閱讀~
本文GitPage地址
Processing Sanger Sequencing file (abi) wiht Python or R
In R, you can using sangerseqR to reading ab1 file.
An example can see: Karobben 2020
Python
Biopython
from Bio import SeqIOhandle = open("test.ab1", "rb")for record in SeqIO.parse(handle, "abi"):print(record)
Trace plot
Biopython: Click hear
Package sanger-sequencing
Link
Can’t find any examples…
Perl
Convert abi to Scf
reference: stock overflow
convert_trace -out_format scf < trace.ab1 > trace.scf
Convert ab1 to excel
Working Manual: ab1_organizer
pip install ab1_organizerab1_organizer.py -f ./path/to/zip/file -t ./path/to/order/table.xlsx
Base Calling
GitHub: tracy
Documentation
Paper
(PS: It seems like we need to download some files from google. So, as you can see, it’s not easy for the people in China mainland to install it.)
It is a great app for basecalling, alignment, assembly and deconvolution of sequencing chromatogram files.
Installation
apt install \build-essential g++ \cmake \git-all \liblzma-dev \zlib1g-dev \libbz2-dev \liblzma-dev \libboost-date-time-dev \libboost-program-options-dev \libboost-system-dev \libboost-filesystem-dev \libboost-iostreams-devgit clone --recursive https://github.com/gear-genomics/tracy.gitcd tracy/make allmake install./bin/tracy -h
Enjoy~
由於語法渲染問題而影響閱讀體驗, 請移步博客閱讀~
本文GitPage地址
GitHub: Karobben
Blog:Karobben
BiliBili:史上最不正經的生物狗
