pub struct PathwaySelectOptions<'a> {
pub keyword: &'a str,
pub mode: MatchMode,
pub exclude_superpathways: bool,
pub only_active: bool,
pub valid_tax_ids: &'a [String],
}Fields§
§keyword: &'a strUser keyword. Interpretation depends on mode.
mode: MatchMode§exclude_superpathways: boolIf true, drop rows where superpathway == TRUE or hierarchy
contains Super-Pathways. Matches filter_pathways.R:32-34.
only_active: boolOnly keep pathways whose status column is TRUE.
valid_tax_ids: &'a [String]Set of NCBI tax IDs (as strings, no TAX- prefix) that pathways
must overlap via their taxrange column. Pass empty to disable
the taxonomic filter.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for PathwaySelectOptions<'a>
impl<'a> RefUnwindSafe for PathwaySelectOptions<'a>
impl<'a> Send for PathwaySelectOptions<'a>
impl<'a> Sync for PathwaySelectOptions<'a>
impl<'a> Unpin for PathwaySelectOptions<'a>
impl<'a> UnsafeUnpin for PathwaySelectOptions<'a>
impl<'a> UnwindSafe for PathwaySelectOptions<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more