Skip to content

Commit 30bf542

Browse files
committed
Add a track example
1 parent fa72df3 commit 30bf542

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

docs/examples/Gallery/plot_tracks.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
"""
2+
Sequence Alignment Plot
3+
=======================
4+
"""
5+
from collections import Counter
6+
import numpy as np
7+
import pandas as pd
8+
9+
import marsilea as ma
10+
import matplotlib as mpl
11+
12+
# sphinx_gallery_start_ignore
13+
import mpl_fontkit as fk
14+
15+
fk.install("Roboto Mono", verbose=False)
16+
17+
mpl.rcParams["font.size"] = 30
18+
# sphinx_gallery_end_ignore
19+
20+
# %%
21+
# Generate random data
22+
# --------------------
23+
24+

0 commit comments

Comments
 (0)