use *;
use HashMap;
/// Represents a Position Weight Matrix (PWM)
/// Stored as a DataFrame with columns A, C, G, T
pub type PWM = DataFrame;
/// Collection of PWMs indexed by motif ID
pub type PWMCollection = ;
/// Represents an Exponential Weight Matrix (EWM)
/// Stored as a DataFrame with columns A, C, G, T
pub type EWM = DataFrame;
/// Collection of EWMs indexed by motif ID
pub type EWMCollection = ;