In [1]:
from assaytools import grant
from glob import glob
%matplotlib inline


Couldn't import dot_parser, loading of dot files will not be possible.

In [2]:
file_set = {'Src': glob("../spectra/2015-12-15/*.xml"),
        'SrcGK': glob("../spectra/2015-12-16/*.xml"),
        'AblGK': glob("../spectra/2015-12-17/*.xml"),
        'Abl': glob("../spectra/2015-12-18/*.xml"),
        'p38': glob("../spectra/2016-01-26/*.xml")}
ligands = ['Bosutinib','Bosutinib Isomer','Erlotinib','Gefitinib']

In [3]:
#You can use it to generate a single plot
grant.plot_spectra_grid(file_set,'Src',ligands,'Bosutinib')



In [4]:
#You can use it to generate a single plot
grant.plot_spectra_grid(file_set,'Src',ligands,'Gefitinib')



In [5]:
#You can use it to generate a single plot
grant.plot_spectra_grid(file_set,'Src',ligands,'Bosutinib Isomer')



In [6]:
grant.plot_spectra_grid(file_set,'Abl',ligands,'Gefitinib')



In [7]:
grant.plot_spectra_grid(file_set,'Abl',ligands,'Bosutinib Isomer')



In [8]:
grant.plot_spectra_grid(file_set,'p38',ligands,'Gefitinib')



In [9]:
grant.plot_spectra_grid(file_set,'p38',ligands,'Bosutinib Isomer')



In [ ]:


In [ ]: