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 218ee11
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 @@ -127,6 +127,7 @@ modificationP
, string "[3CholTEG]" $> Mod_3CholTEG
, string "[5C10]" $> Mod_5C10
, string "[5Alk]" $> Mod_5Alk
, string "[5ROX]" $> Mod_5ROX
, string "[GC]" $> Mod_GC
, string "[GT]" $> Mod_GT
, string "[AT]" $> Mod_AT
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 @@ -87,6 +87,7 @@ data Modification
| Mod_3CholTEG
| Mod_5C10
| Mod_5Alk
| Mod_5ROX
| Mod_GC
| Mod_GT
| Mod_AT
Expand Down

0 comments on commit 218ee11

Please sign in to comment.