python
pip install bccb
python
from bccb import File
file = File('data.txt', 'r')
content = file.read()
file.close()
python
from bccb.seq import DNA
seq = DNA('ATCG')
reverse_seq = seq.reverse()
length = seq.length()
composition = seq.composition()
python
from bccb.plot import Plot
plot = Plot()
plot.add_data([1, 2, 3, 4], [5, 6, 7, 8])
plot.show()