Skip to content

Commit

Permalink
feat: implement PartialEq for Assembly (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe authored Mar 6, 2023
1 parent 77afd84 commit 8808211
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/static_data/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const GRCH37_JSON_GZ: &[u8] = include_bytes!("_data/GRCh37.json.gz");
const GRCH37_P10_JSON_GZ: &[u8] = include_bytes!("_data/GRCh37.p10.json.gz");
const GRCH38_JSON_GZ: &[u8] = include_bytes!("_data/GRCh38.json.gz");

#[derive(Debug, Deserialize, Enum, Clone, Copy)]
#[derive(Debug, Deserialize, Enum, Clone, Copy, PartialEq, Eq)]
pub enum Assembly {
Grch37,
Grch37p10,
Expand Down

0 comments on commit 8808211

Please sign in to comment.