-- | This module contains a data structure for RNAfold output -- For more information on RNAplex consult: module Bio.RNAfoldData where -- | Data structure for RNAfold data RNAfold = RNAfold { sequenceIdentifier :: String, foldSequence :: String, foldSecondaryStructure :: String, foldingEnergy :: Double } deriving (Show, Eq)