pub struct StringFunctionalEnrichmentArgs {
pub identifiers: Vec<String>,
pub background: Option<Vec<String>>,
pub species: usize,
pub caller_identity: String,
}Expand description
Performs the enrichment analysis of your set of proteins for the Gene Ontology, KEGG pathways, UniProt Keywords, PubMed publications, Pfam, InterPro and SMART domains.
Fields§
§identifiers: Vec<String>List of genes to retrieve network for
background: Option<Vec<String>>Background list of genes to compare against (Only STRING identifiers are accepted) If not provided, the whole genome of the species is used
species: usizeSpecies to retrieve network for (NCBI taxonomy ID)
caller_identity: Stringidentifier of the caller to provide to the server
Implementations§
Source§impl StringFunctionalEnrichmentArgs
impl StringFunctionalEnrichmentArgs
Sourcepub fn builder() -> StringFunctionalEnrichmentArgsBuilder
pub fn builder() -> StringFunctionalEnrichmentArgsBuilder
Create an instance of StringFunctionalEnrichmentArgs using the builder syntax
Source§impl StringFunctionalEnrichmentArgs
impl StringFunctionalEnrichmentArgs
pub fn build_post(&self) -> Value
Trait Implementations§
Source§impl Args for StringFunctionalEnrichmentArgs
impl Args for StringFunctionalEnrichmentArgs
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 StringFunctionalEnrichmentArgs
impl Clone for StringFunctionalEnrichmentArgs
Source§fn clone(&self) -> StringFunctionalEnrichmentArgs
fn clone(&self) -> StringFunctionalEnrichmentArgs
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 FromArgMatches for StringFunctionalEnrichmentArgs
impl FromArgMatches for StringFunctionalEnrichmentArgs
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 StringFunctionalEnrichmentArgs
impl Parser for StringFunctionalEnrichmentArgs
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)
Auto Trait Implementations§
impl Freeze for StringFunctionalEnrichmentArgs
impl RefUnwindSafe for StringFunctionalEnrichmentArgs
impl Send for StringFunctionalEnrichmentArgs
impl Sync for StringFunctionalEnrichmentArgs
impl Unpin for StringFunctionalEnrichmentArgs
impl UnsafeUnpin for StringFunctionalEnrichmentArgs
impl UnwindSafe for StringFunctionalEnrichmentArgs
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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