| Safe Haskell | Safe |
|---|---|
| Language | Haskell98 |
Bio.RNAupData
Description
This module contains a data structure for RNAup output For more information on RNAup consult: http://www.tbi.univie.ac.at/RNA/RNAup.html
Synopsis
- data RNAupInteraction = RNAupInteraction {}
- data RNAupInteractionRegion = RNAupInteractionRegion {
- upSecondaryStructure :: String
- upQueryDuplexBegin :: Int
- upQueryDuplexEnd :: Int
- upTargetDuplexBegin :: Int
- upTargetDuplexEnd :: Int
- upDuplexEnergy :: Double
- upDuplexEnergyWithoutAccessiblity :: Maybe Double
- upQueryAccessiblity :: Maybe Double
- upTargetAccessibility :: Maybe Double
- upQuerySequence :: String
- upTargetSequence :: String
- upOutputFileName :: Maybe String
Documentation
data RNAupInteraction #
Data structure for individual interaction between a target and query nucleic acid seqence, contains all (sub)-optimal interactions
Constructors
| RNAupInteraction | |
Fields | |
Instances
| Eq RNAupInteraction # | |
Defined in Bio.RNAupData Methods (==) :: RNAupInteraction -> RNAupInteraction -> Bool # (/=) :: RNAupInteraction -> RNAupInteraction -> Bool # | |
| Show RNAupInteraction # | |
Defined in Bio.RNAupData Methods showsPrec :: Int -> RNAupInteraction -> ShowS # show :: RNAupInteraction -> String # showList :: [RNAupInteraction] -> ShowS # | |
data RNAupInteractionRegion #
Data structure for (sub-) optimal interaction region
Constructors
Instances
| Eq RNAupInteractionRegion # | |
Defined in Bio.RNAupData Methods (==) :: RNAupInteractionRegion -> RNAupInteractionRegion -> Bool # (/=) :: RNAupInteractionRegion -> RNAupInteractionRegion -> Bool # | |
| Show RNAupInteractionRegion # | |
Defined in Bio.RNAupData Methods showsPrec :: Int -> RNAupInteractionRegion -> ShowS # show :: RNAupInteractionRegion -> String # showList :: [RNAupInteractionRegion] -> ShowS # | |