Source code for flotilla.data_model.supplemental

class SupplementalData(object):

[docs] def __init__(self, name_to_df=None): """Container for holding any arbitrary pandas dataframes All attributes of type pandas.DataFrame will be saved with the study. Parameters ---------- name_to_df : dict Mapping of a string of the name of the desired attribute, to the pandas dataframe """ if name_to_df is not None: for name, df in name_to_df.items(): self.__setattr__(name, df)
Olga B. Botvinnik is funded by the NDSEG fellowship and is a NumFOCUS John Hunter Technology Fellow.
Michael T. Lovci was partially funded by a fellowship from Genentech.
Partially funded by NIH grants NS075449 and HG004659 and CIRM grants RB4-06045 and TR3-05676 to Gene Yeo.