pub struct ArgsGeomux {
pub geomux_min_umi_guides: usize,
pub geomux_log_odds_ratio: Option<f64>,
pub geomux_fdr_threshold: f64,
pub geomux_mode: GeomuxMode,
/* private fields */
}Fields§
§geomux_min_umi_guides: usizeMinimum number of UMIs required for a guide to be included in geomux testing.
geomux_log_odds_ratio: Option<f64>Log odds ratio minimum threshold to use for geomux assignments.
geomux_fdr_threshold: f64fdr threshold to use for geomux assignments.
geomux_mode: GeomuxModeMode to use for geomux testing.
Implementations§
Source§impl ArgsGeomux
impl ArgsGeomux
pub fn min_umi_cells(&self) -> usize
Trait Implementations§
Source§impl Args for ArgsGeomux
impl Args for ArgsGeomux
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl Clone for ArgsGeomux
impl Clone for ArgsGeomux
Source§fn clone(&self) -> ArgsGeomux
fn clone(&self) -> ArgsGeomux
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl CommandFactory for ArgsGeomux
impl CommandFactory for ArgsGeomux
Source§impl Debug for ArgsGeomux
impl Debug for ArgsGeomux
Source§impl FromArgMatches for ArgsGeomux
impl FromArgMatches for ArgsGeomux
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§impl Parser for ArgsGeomux
impl Parser for ArgsGeomux
Source§fn parse_from<I, T>(itr: I) -> Self
fn parse_from<I, T>(itr: I) -> Self
Parse from iterator, exit on error.
Source§fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
Parse from iterator, return Err on error.
Source§fn update_from<I, T>(&mut self, itr: I)
fn update_from<I, T>(&mut self, itr: I)
impl Copy for ArgsGeomux
Auto Trait Implementations§
impl Freeze for ArgsGeomux
impl RefUnwindSafe for ArgsGeomux
impl Send for ArgsGeomux
impl Sync for ArgsGeomux
impl Unpin for ArgsGeomux
impl UnsafeUnpin for ArgsGeomux
impl UnwindSafe for ArgsGeomux
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more