Skip to content

Commit

Permalink
version 0.1.5.5 Add 5ROX modification
Browse files Browse the repository at this point in the history
  • Loading branch information
maksbotan committed May 16, 2024
1 parent 6728d39 commit 3adcf1e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## [Unreleased]

## [0.1.5.5] - 2024-05-16
- Add `5ROX` modification to Fasta parser.

## [0.1.5.4] - 2024-05-16
- Fix Fasta parser for unknown modifications on the end of the line.

Expand Down
2 changes: 1 addition & 1 deletion package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cobot-io
version: 0.1.5.4
version: 0.1.5.5
github: "biocad/cobot-io"
license: BSD3
category: Bio
Expand Down
1 change: 1 addition & 0 deletions src/Bio/FASTA/Parser.hs
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ modificationP
, string "[TGG]" $> Mod_TGG
, string "[TTC]" $> Mod_TTC
, string "[TTT]" $> Mod_TTT
, string "[5ROX]" $> Mod_5ROX
, unknownP
]

Expand Down
1 change: 1 addition & 0 deletions src/Bio/FASTA/Type.hs
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ data Modification
| Mod_TGG
| Mod_TTC
| Mod_TTT
| Mod_5ROX
| Unknown String
deriving (Eq, Show, Ord, Generic)

Expand Down

0 comments on commit 3adcf1e

Please sign in to comment.