pub struct ClusterResult {
pub representatives_fasta: PathBuf,
pub rep_to_members: HashMap<String, Vec<String>>,
pub total_members: usize,
}Expand description
Result of an mmseqs easy-cluster run.
Fields§
§representatives_fasta: PathBuf§rep_to_members: HashMap<String, Vec<String>>Map: representative-header → list of member headers (including the representative itself, which mmseqs includes as one of the members).
total_members: usizeAuto Trait Implementations§
impl Freeze for ClusterResult
impl RefUnwindSafe for ClusterResult
impl Send for ClusterResult
impl Sync for ClusterResult
impl Unpin for ClusterResult
impl UnsafeUnpin for ClusterResult
impl UnwindSafe for ClusterResult
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