Basically bioinformatics-related, reusable Python3 codes as a package.
pip install bits-yoshigit clone https://github.com/yoshihikosuzuki/bits
cd bits
pip install .To run unit tests,
python -m unittestIf you use bits.seq.load_fast[a|q] with range= option,
If you use bits.seq.DotPlot,
- Gepard, or
- modified Gepard (recommended)
If you use bits.seq.load_db etc.,
BITS has two submodules:
bits.seqfor DNA sequence manipulations, andbits.utilfor other, general purposes in Python programming.
Import and use any function/class as follows:
import bits.seq as bs
print(bs.revcomp_seq('aactg'))> cagtt