Skip to content

Commit

Permalink
Merge pull request #12 from bzhanglab/dev
Browse files Browse the repository at this point in the history
add clone to `ORAConfig` and `AdjustmentMethod`
  • Loading branch information
iblacksand authored Oct 31, 2023
2 parents 62c87a6 + 53fb198 commit 6d8191e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions webgestalt_lib/src/methods/ora.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ use rayon::prelude::*;
use statrs::distribution::{DiscreteCDF, Hypergeometric};
use std::sync::{Arc, Mutex};

#[derive(Clone)]
pub struct ORAConfig {
pub min_overlap: i64,
pub min_set_size: usize,
Expand Down
1 change: 1 addition & 0 deletions webgestalt_lib/src/stat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ struct Carrier {
original_order: usize,
}

#[derive(Clone)]
pub enum AdjustmentMethod {
BH,
None,
Expand Down

0 comments on commit 6d8191e

Please sign in to comment.