A tool for processing DNA sequences.
$ pip install bioseqfrom bioseq import gc_count, reverse, transcribe
seq_string = "ATCGAGCG"
# Counting GC ratio
gc_count(seq_string)
# Reversing this sequence
reverse(seq_string)
# Transcribe the sequence
transcribe(seq_string)Interested in contributing? Check out the contributing guidelines. Please note that this project is released with a Code of Conduct. By contributing to this project, you agree to abide by its terms.
bioseq was created by HanChen Wang. It is licensed under the terms of the MIT license.
bioseq was created with cookiecutter and the py-pkgs-cookiecutter template.