pub struct ReadTagTableCli {
pub read_tag_table: Vec<PathBuf>,
pub rt_read_id_column: String,
pub rt_cell_column: String,
pub rt_cell_qual_column: String,
pub rt_umi_column: String,
pub rt_umi_qual_column: String,
pub rt_original_read_id_column: String,
}Fields§
§read_tag_table: Vec<PathBuf>Optional external read-tag table.
Accepted formats:
- binary
.binfiles written withReadTagTable::save_binary - TSV files
- TSV.GZ files
rt_read_id_column: String§rt_cell_column: String§rt_cell_qual_column: String§rt_umi_column: String§rt_umi_qual_column: String§rt_original_read_id_column: StringImplementations§
Source§impl ReadTagTableCli
impl ReadTagTableCli
pub fn to_config_for_id(&self, id: usize) -> Result<ReadTagTableConfig>
pub fn to_config(&self) -> Result<ReadTagTableConfig>
pub fn load(&self) -> Result<ReadTagTable>
pub fn load_for_id(&self, id: usize) -> Result<ReadTagTable>
Trait Implementations§
Source§impl Args for ReadTagTableCli
impl Args for ReadTagTableCli
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 ReadTagTableCli
impl Clone for ReadTagTableCli
Source§fn clone(&self) -> ReadTagTableCli
fn clone(&self) -> ReadTagTableCli
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ReadTagTableCli
impl Debug for ReadTagTableCli
Source§impl FromArgMatches for ReadTagTableCli
impl FromArgMatches for ReadTagTableCli
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.Auto Trait Implementations§
impl Freeze for ReadTagTableCli
impl RefUnwindSafe for ReadTagTableCli
impl Send for ReadTagTableCli
impl Sync for ReadTagTableCli
impl Unpin for ReadTagTableCli
impl UnsafeUnpin for ReadTagTableCli
impl UnwindSafe for ReadTagTableCli
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