Skip to content

Commit

Permalink
Merge branch 'master' of github.com:ndaniels/MRFy
Browse files Browse the repository at this point in the history
  • Loading branch information
nrnrnr committed Jul 9, 2012
2 parents 7f16a10 + e4f7c51 commit 4b44659
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion HMMPlus.hs
Expand Up @@ -138,7 +138,8 @@ p_int = decimal
p_direction = liftA mkDirection (optSpaces *> dir <* optSpaces <?> "direction")
where dir = oneStringOf [ "1", "-1" ]

p_exposure = liftA (map mkExposure) (optSpaces *> many1 (oneOf "io") <* optSpaces <?> "exposure")
p_exposure = EList <$> liftA (map mkExposure)
(optSpaces *> many1 (oneOf "io") <* optSpaces <?> "exposure")



Expand Down
1 change: 1 addition & 0 deletions MRFTypes.hs
Expand Up @@ -7,6 +7,7 @@ module MRFTypes
, StrandPair(..)
, Helix(..)
, Exposure(..), mkExposure, unElist
, ExposureList(..)
, Direction(..), mkDirection
, BetaStrand(..), BetaPosition, BetaResidue(..), BetaPair(..)
, TProb(..), TProbs, m_m, m_i, m_d, i_m, i_i, d_m, d_d, b_m, m_e
Expand Down

0 comments on commit 4b44659

Please sign in to comment.