# All required paths
%matplotlib inline
from basepair.config import get_data_dir
ddir = get_data_dir()
modisco_subdir = "modisco/all/deeplift/profile/"
model_dir = f"{ddir}/processed/chipnexus/exp/models/oct-sox-nanog-klf/models/n_dil_layers=9/"
modisco_dir = os.path.join(model_dir, modisco_subdir)
output_dir = modisco_dir
figures = f"{ddir}/figures/modisco/pattern_clustering"
%matplotlib inline
%config InlineBackend.figure_format = 'retina'
from uuid import uuid4
from basepair.math import mean
from basepair.stats import perc
from IPython.display import display, HTML
from basepair.plot.vdom import df2html, df2html_old, render_datatable, vdom_footprint
from basepair.plot.utils import strip_axis
from basepair.plot.tracks import tidy_motif_plot
from basepair.modisco.core import patterns_to_df
from basepair.modisco.utils import longer_pattern, shorten_pattern, extract_name_short
from basepair.imports import *
modisco_dir = Path(modisco_dir)
output_dir = Path(output_dir)
!mkdir -p {figures}
paper_config()
# Load modisco patterns
mr = ModiscoResult(modisco_dir / "modisco.h5")
mr.open()
patterns = [mr.get_pattern(p) for p in mr.patterns()]
# patterns = [mr.get_pattern(p) for p in mr.patterns()]
pattern_table = pd.read_csv(output_dir / "pattern_table.csv")
tasks = [x.split("/")[0] for x in mr.tasks()]
footprints = read_pkl(output_dir / 'footprints.pkl')
# Add profile to patterns
patterns = [p.add_profile(footprints[p.name]) for p in patterns]
# Add features
patterns = [p.add_attr('features', OrderedDict(pattern_table[pattern_table.pattern == shorten_pattern(p.name)].iloc[0])) for p in patterns]
# check that the pattern names match
assert patterns[4].attrs['features']['pattern'] == shorten_pattern(patterns[4].name)
df = patterns_to_df(patterns, properties=['name', 'short_name', 'seq_info_content'])
fig = plt.figure(figsize=get_figsize(0.25))
df.seq_info_content.plot.hist(30)
plt.xlabel("Sequence IC")
fig.savefig(f"{figures}/../pattern_IC.hist.pdf")
fig.savefig(f"{figures}/../pattern_IC.hist.png")
Motif with the lowest ic:
patterns[df.seq_info_content.idxmin()].plot("seq_ic");
tidy_motif_plot()
Motif with the highest ic:
patterns[df.seq_info_content.idxmax()].plot("seq_ic");
tidy_motif_plot()
We see that many patterns have high information content. The question now is: are these motifs overlapping known transposable elements?
repeat_masker_file = f"{ddir}/raw/annotation/mm10/RepeatMasker/mm10.fa.out.gz"
!mkdir -p {ddir}/raw/annotation/mm10/RepeatMasker/
if not os.path.exists(repeat_masker_file):
!wget http://www.repeatmasker.org/genomes/mm10/RepeatMasker-rm405-db20140131/mm10.fa.out.gz -O {repeat_masker_file}
def read_repeat_masker(file_path):
dfrm = pd.read_table(file_path, delim_whitespace=True, header=[1])
dfrm.columns = [x.replace("\n", "_") for x in dfrm.columns]
dfrm['name'] = dfrm['repeat'] + "//" + dfrm['class/family']
dfrm = dfrm[['ins.', 'sequence', 'begin', 'name']]
dfrm.columns = ['chrom', 'start', 'end', 'name']
return dfrm
dfrm = read_repeat_masker(repeat_masker_file)
dfrm.head()
from pybedtools import BedTool
bt_te = BedTool.from_dataframe(dfrm)
def intersect_repeat_masker(pattern, f=1.0):
bt = BedTool(f"{modisco_dir}/seqlets/{pattern}.bedgz")
try:
dfint = bt.intersect(bt_te, wa=True, wb=True, f=f).to_dataframe()
except:
return None
t = dfint.blockCount.str.split("//", expand=True)
dfint['pattern_name'] = pattern
dfint['repeat_name'] = t[0]
dfint['repeat_family'] = t[1]
dfint['n_pattern'] = bt.to_dataframe()[['chrom', 'start', 'end']].drop_duplicates().shape[0]
dfint['interval'] = dfint['chrom'] + ":" + dfint['start'].astype(str) + "-" + dfint['end'].astype(str)
return dfint[['chrom', 'start', 'end', 'interval', 'pattern_name', 'n_pattern', 'repeat_name', 'repeat_family']]
dfi_raw = pd.concat(Parallel(n_jobs=20)(delayed(intersect_repeat_masker)(pattern, f=0.9) for pattern in tqdm(mr.patterns())))
dfi = dfi_raw.copy()
# Restrict only to LTR/
dfi = dfi[dfi.repeat_family.str.startswith("LTR/")]
# Append some stats
unique_elements = dfi.groupby(['pattern_name']).interval.nunique()
dfiu = dfi[['pattern_name', 'n_pattern']].drop_duplicates().set_index('pattern_name').join(unique_elements)
dfiu['LTR_overlap_frac'] = dfiu.interval / dfiu.n_pattern
dfi = pd.merge(dfi, dfiu.reset_index()[['pattern_name', 'LTR_overlap_frac']], on='pattern_name', how='left')
dfi = dfi.drop_duplicates()
# Append properties
df = patterns_to_df(patterns, properties=['name', 'short_name', 'seq_info_content'])
df = df.set_index('name').join(dfiu).reset_index()
TE_min_seq_IC = 50
TE_min_LTR_Overlap_frac = 0.7
height = get_figsize(0.25)[0]
fig = sns.jointplot("LTR_overlap_frac", "seq_info_content", marginal_kws=dict(bins=15), s=5, data=df, height=height);
fig.ax_joint.axvline(TE_min_LTR_Overlap_frac, linestyle='--', color='grey', alpha=.4);
fig.ax_joint.axhline(TE_min_seq_IC, linestyle='--', color='grey', alpha=.4);
fig.savefig(f"{figures}/TE-match,seq-IC.scatter.pdf")
fig.savefig(f"{figures}/TE-match,seq-IC.scatter.png")
# TE's are in the top right
pattern_te_names = df[(df.seq_info_content > TE_min_seq_IC) & (df.LTR_overlap_frac > TE_min_LTR_Overlap_frac)].sort_values('LTR_overlap_frac', ascending=False).name.unique()
We can see that motif with high IC are frequently in the region of known TE's
dfi.repeat_name.value_counts()
dfi.repeat_family.value_counts()
dfi_top = dfi[dfi.pattern_name.isin(pattern_te_names)].drop_duplicates()
dfi_top['n_repeat_name'] = dfi_top.groupby(['pattern_name', 'repeat_name']).repeat_name.transform('size')
dfi_top['n_repeat_frac'] = dfi_top['n_repeat_name'] / dfi_top['n_pattern']
dfi_top1 = dfi_top.groupby(['pattern_name']).apply(lambda x: x.loc[x.n_repeat_frac.idxmax()])
del dfi_top1['chrom']
del dfi_top1['start']
del dfi_top1['end']
del dfi_top1['interval']
del dfi_top1['pattern_name']
print(dfi_top1.sort_values('n_repeat_frac', ascending=False).to_string())
Seems not, but for some of them it's pretty consistent.
Here is the result of querying these motif in RepBase: link
w,h = get_figsize(.5, aspect=1/12)
os.makedirs(f"{figures}/TE_motifs", exist_ok=True)
for pname in pattern_te_names:
mr.plot_pattern(pname, kind='seq_ic', letter_width=w/70, height=h);
tidy_motif_plot()
plt.savefig(f"{figures}/TE_motifs/{shorten_pattern(pname)}.pdf")
plt.savefig(f"{figures}/TE_motifs/{shorten_pattern(pname)}.png")
plt.close()
os.makedirs(f"{figures}/non-TE_motifs", exist_ok=True)
for p in tqdm(patterns):
pname = p.name
if pname in pattern_te_names:
continue
mr.plot_pattern(pname, kind='seq_ic', letter_width=w/70, height=h, trim_frac=0.08);
tidy_motif_plot()
plt.savefig(f"{figures}/non-TE_motifs/{shorten_pattern(pname)}.pdf")
plt.savefig(f"{figures}/non-TE_motifs/{shorten_pattern(pname)}.png")
plt.close()
For further analysis, let's split the patterns into two groups: TE's and non-TE's:
patterns_te = [p for p in patterns if p.name in pattern_te_names]
patterns_nte = [p for p in patterns if p.name not in pattern_te_names]
assert len(patterns_te) + len(patterns_nte) == len(patterns)
# Fasta-sequences for the consensu
# for p in patterns_te:
# print(f">{p.name}")
# print(p.get_consensus())
print("# long motifs: ", len(patterns_te))
print("# short motifs:", len(patterns_nte))
from basepair.exp.chipnexus.motif_clustering import similarity_matrix
sim_nte_seq = similarity_matrix(patterns_nte, track='seq_ic')
sim_te_seq = similarity_matrix(patterns_te, track='seq_ic')
sim_all_seq = similarity_matrix(patterns, track='seq_ic')
%tqdm_restart
fig = plt.figure(figsize=get_figsize(0.25))
iu1 = np.triu_indices(len(sim_nte_seq), 1)
plt.hist(sim_nte_seq[iu1], bins=100);
plt.title("Similarity (seq_ic)")
plt.xlabel("Similarity between two motifs (non-TE)");
plt.ylabel("Frequency");
plt.savefig(f"{figures}/non-TE.similarity.hist.pdf")
plt.savefig(f"{figures}/non-TE.similarity.hist.png")
fig = plt.figure(figsize=get_figsize(0.25))
iu2 = np.triu_indices(len(sim_te_seq), 1)
plt.hist(sim_te_seq[iu2], bins=100);
plt.title("Similarity (seq_ic)")
plt.ylabel("Frequency");
plt.xlabel("Similarity between two motifs (TE)");
plt.savefig(f"{figures}/TE.similarity.hist.pdf")
plt.savefig(f"{figures}/TE.similarity.hist.png")
fig = plt.figure(figsize=get_figsize(0.25))
iu_all = np.triu_indices(len(sim_all_seq), 1)
plt.hist(sim_all_seq[iu2], bins=100);
plt.title("Similarity (seq_ic)")
plt.ylabel("Frequency");
plt.xlabel("Similarity between two motifs (all)");
plt.savefig(f"{figures}/all.similarity.hist.pdf")
plt.savefig(f"{figures}/all.similarity.hist.png")
from scipy.cluster.hierarchy import linkage, optimal_leaf_ordering, cut_tree, leaves_list
from basepair.modisco.motif_clustering import to_colors
# Seq IC-based clustering
iu_nte = np.triu_indices(len(sim_nte_seq), 1)
lm_nte_seq = linkage(1-sim_nte_seq[iu_nte], 'ward', optimal_ordering=True)
clusters_nte_seq = cut_tree(lm_nte_seq, n_clusters=9)[:,0]
names = [shorten_pattern(x.name) for x in patterns_nte]
cm_nte_seq = sns.clustermap(pd.DataFrame(sim_nte_seq, index=names, columns=names),
row_linkage=lm_nte_seq,
col_linkage=lm_nte_seq,
col_colors=to_colors(pd.DataFrame(dict(cluster=pd.Categorical(clusters_nte_seq)), index=names)),
cmap='Blues',
figsize=get_figsize(0.5, aspect=1)
).fig.suptitle('Seq-ic sim');
plt.savefig(f"{figures}/non-TE.heatmap.pdf")
plt.savefig(f"{figures}/non-TE.heatmap.png")
iu_te = np.triu_indices(len(sim_te_seq), 1)
lm_te_seq = linkage(1-sim_te_seq[iu_te], 'ward', optimal_ordering=True)
clusters_te_seq = cut_tree(lm_te_seq, n_clusters=9)[:,0]
names = [shorten_pattern(x.name) for x in patterns_te]
rnames = [shorten_pattern(x.name).ljust(9) + " " + dfi_top1.loc[x.name].repeat_name for x in patterns_te]
df_anno = dfi_top1.loc[[x.name for x in patterns_te]][['LTR_overlap_frac', 'n_repeat_frac']]
df_anno.index = rnames
cm_te = sns.clustermap(pd.DataFrame(sim_te_seq, index=rnames, columns=names),
row_linkage=lm_te_seq,
col_linkage=lm_te_seq,
row_colors=to_colors(df_anno),
cmap='Blues',
yticklabels=True,
xticklabels=True,
figsize=get_figsize(0.7, aspect=1)
).fig.suptitle('Seq IC sim');
plt.savefig(f"{figures}/TE.heatmap.pdf")
plt.savefig(f"{figures}/TE.heatmap.png")
iu_all = np.triu_indices(len(sim_all_seq), 1)
lm_all_seq = linkage(1-sim_all_seq[iu_all], 'ward', optimal_ordering=True)
clusters_all_seq = cut_tree(lm_all_seq, n_clusters=9)[:,0]
names = [shorten_pattern(x.name) for x in patterns]
cm_all = sns.clustermap(pd.DataFrame(sim_all_seq, index=names, columns=names),
row_linkage=lm_all_seq,
col_linkage=lm_all_seq,
cmap='Blues',
figsize=get_figsize(0.5, aspect=1)
).fig.suptitle('Seq IC sim');
plt.savefig(f"{figures}/all.heatmap.pdf")
plt.savefig(f"{figures}/all.heatmap.png")
from basepair.modisco.motif_clustering import create_pattern_table, align_clustered_patterns
np.random.seed(42)
cluster_order = np.argsort(leaves_list(lm_nte_seq))
cluster = clusters_nte_seq
patterns_nte_clustered = align_clustered_patterns(patterns_nte, cluster_order, cluster,
align_track='seq_ic',
metric='continousjaccard',
# don't shit the major patterns
# by more than 15 when aligning
trials=20,
max_shift=15)
# add the major motif group
patterns_nte_clustered = [x.add_attr("pattern_group", 'nte') for x in patterns_nte_clustered]
cluster_order = np.argsort(leaves_list(lm_te_seq))
cluster = clusters_te_seq
patterns_te_clustered = align_clustered_patterns(patterns_te, cluster_order, cluster,
align_track='seq_ic',
metric='continousjaccard',
# don't shit the major patterns
# by more than 15 when aligning
trials=20,
max_shift=15)
patterns_te_clustered = [x.add_attr("pattern_group", 'te') for x in patterns_te_clustered]
cluster_order = np.argsort(leaves_list(lm_all_seq))
cluster = clusters_all_seq
patterns_all_clustered = align_clustered_patterns(patterns, cluster_order, cluster,
align_track='seq_ic',
metric='continousjaccard',
# don't shit the major patterns
# by more than 15 when aligning
trials=20,
max_shift=15)
# patterns_te_clustered = [x.add_attr("pattern_group", 'te') for x in patterns_te_clustered]
write_pkl(patterns_all_clustered, output_dir / 'patterns.pkl')
pattern_table_nte_seq = create_pattern_table(patterns_nte_clustered,
logo_len=50,
seqlogo_kwargs=dict(width=420),
n_jobs=20,
footprint_width=120,
footprint_kwargs=dict(figsize=(3,1.5)))
pattern_table_te_seq = create_pattern_table(patterns_te_clustered,
logo_len=70,
seqlogo_kwargs=dict(width=420),
n_jobs=20,
footprint_width=120,
footprint_kwargs=dict(figsize=(3,1.5)))
pattern_table_all = create_pattern_table(patterns_all_clustered,
logo_len=70,
seqlogo_kwargs=dict(width=420),
n_jobs=20,
footprint_width=120,
footprint_kwargs=dict(figsize=(3,1.5)))
from basepair.modisco.table import write_modisco_table
def get_first_columns(df, cols):
remaining_columns = [c for c in df.columns if c not in cols]
return df[cols + remaining_columns]
(output_dir / 'motif_clustering').mkdir(exist_ok=True)
background_motifs = ['Essrb', 'Klf4', 'Nanog','Oct4','Oct4-Sox2', 'Sox2']
first_columns = ['pattern', 'cluster', 'n seqlets', 'logo_imp', 'logo_seq'] + [task+'/f' for task in tasks] + [t + '/d_p' for t in tasks] # + [m+'/odds' for m in background_motifs]
remove = [task + '/f' for task in tasks] + ['logo_imp', 'logo_seq']
pattern_table_nte_seq['i'] = np.arange(len(pattern_table_nte_seq), dtype=int)
pattern_table_nte_seq = get_first_columns(pattern_table_nte_seq, ['i'] + first_columns)
write_modisco_table(pattern_table_nte_seq, output_dir / 'motif_clustering', report_url='../results.html', prefix='patterns_short', exclude_when_writing=remove)
pattern_table_te_seq['i'] = np.arange(len(pattern_table_te_seq), dtype=int)
pattern_table_te_seq = get_first_columns(pattern_table_te_seq, ['i'] + first_columns)
write_modisco_table(pattern_table_te_seq, output_dir / 'motif_clustering', report_url='../results.html', prefix='patterns_long', exclude_when_writing=remove)
pattern_table_all['i'] = np.arange(len(pattern_table_all), dtype=int)
pattern_table_all = get_first_columns(pattern_table_all, ['i'] + first_columns)
write_modisco_table(pattern_table_all, output_dir, report_url='results.html', prefix='pattern_table', exclude_when_writing=remove)