Safe Haskell | None |
---|---|
Language | Haskell2010 |
This module contains data structures for RNAlien
Synopsis
- data StaticOptions = StaticOptions {
- tempDirPath :: String
- sessionID :: String
- nSCICutoff :: Double
- userTaxId :: Maybe Int
- singleHitperTaxToggle :: Bool
- querySelectionMethod :: String
- queryNumber :: Int
- lengthFilterToggle :: Bool
- coverageFilterToggle :: Bool
- blastSoftmaskingToggle :: Bool
- cpuThreads :: Int
- blastDatabase :: Maybe String
- taxRestriction :: Maybe String
- verbositySwitch :: Bool
- offline :: Bool
- data ModelConstruction = ModelConstruction {
- iterationNumber :: Int
- inputFasta :: [Fasta () ()]
- taxRecords :: [TaxonomyRecord]
- upperTaxonomyLimit :: Maybe Int
- taxonomicContext :: Maybe Taxon
- evalueThreshold :: Double
- alignmentModeInfernal :: Bool
- selectedQueries :: [Fasta () ()]
- potentialMembers :: [SearchResult]
- data TaxonomyRecord = TaxonomyRecord {}
- data SequenceRecord = SequenceRecord {
- nucleotideSequence :: Fasta () ()
- aligned :: Int
- recordDescription :: ByteString
- data CMsearch = CMsearch {}
- data CMsearchHit = CMsearchHit {}
- data SearchResult = SearchResult {
- candidates :: [(Fasta () (), Int, ByteString)]
- blastDatabaseSize :: Maybe Double
- data CMstat = CMstat {}
Documentation
data StaticOptions Source #
Static construction options
StaticOptions | |
|
Instances
Show StaticOptions Source # | |
Defined in Biobase.RNAlien.Types showsPrec :: Int -> StaticOptions -> ShowS # show :: StaticOptions -> String # showList :: [StaticOptions] -> ShowS # |
data ModelConstruction Source #
Keeps track of model construction
ModelConstruction | |
|
Instances
Show ModelConstruction Source # | |
Defined in Biobase.RNAlien.Types showsPrec :: Int -> ModelConstruction -> ShowS # show :: ModelConstruction -> String # showList :: [ModelConstruction] -> ShowS # |
data TaxonomyRecord Source #
Instances
Show TaxonomyRecord Source # | |
Defined in Biobase.RNAlien.Types showsPrec :: Int -> TaxonomyRecord -> ShowS # show :: TaxonomyRecord -> String # showList :: [TaxonomyRecord] -> ShowS # |
data SequenceRecord Source #
SequenceRecord | |
|
Instances
Show SequenceRecord Source # | |
Defined in Biobase.RNAlien.Types showsPrec :: Int -> SequenceRecord -> ShowS # show :: SequenceRecord -> String # showList :: [SequenceRecord] -> ShowS # |
data CMsearchHit Source #
CMsearchHit | |
|
Instances
Eq CMsearchHit Source # | |
Defined in Biobase.RNAlien.Types (==) :: CMsearchHit -> CMsearchHit -> Bool # (/=) :: CMsearchHit -> CMsearchHit -> Bool # | |
Read CMsearchHit Source # | |
Defined in Biobase.RNAlien.Types readsPrec :: Int -> ReadS CMsearchHit # readList :: ReadS [CMsearchHit] # readPrec :: ReadPrec CMsearchHit # readListPrec :: ReadPrec [CMsearchHit] # | |
Show CMsearchHit Source # | |
Defined in Biobase.RNAlien.Types showsPrec :: Int -> CMsearchHit -> ShowS # show :: CMsearchHit -> String # showList :: [CMsearchHit] -> ShowS # |
data SearchResult Source #
SearchResult | |
|
Instances
Show SearchResult Source # | |
Defined in Biobase.RNAlien.Types showsPrec :: Int -> SearchResult -> ShowS # show :: SearchResult -> String # showList :: [SearchResult] -> ShowS # |
CMstat | |
|