Struct tskit::OwnedNodeTable

source ·
pub struct OwnedNodeTable { /* private fields */ }
Expand description

A standalone node table that owns its data.

Examples

use tskit::OwnedNodeTable;

let mut nodes = OwnedNodeTable::default();
let rowid = nodes.add_row(0, 1.1, -1, -1).unwrap();
assert_eq!(rowid, 0);
assert_eq!(nodes.num_rows(), 1);

An example with metadata. This requires the cargo feature "derive" for tskit.

use tskit::OwnedNodeTable;

#[derive(serde::Serialize,
         serde::Deserialize,
         tskit::metadata::NodeMetadata)]
#[serializer("serde_json")]
struct NodeMetadata {
    value: i32,
}

let metadata = NodeMetadata{value: 42};

let mut nodes = OwnedNodeTable::default();

let rowid = nodes.add_row_with_metadata(0, 1., -1, -1, &metadata).unwrap();
assert_eq!(rowid, 0);

match nodes.metadata::<NodeMetadata>(rowid) {
    // rowid is in range, decoding succeeded
    Some(Ok(decoded)) => assert_eq!(decoded.value, 42),
    // rowid is in range, decoding failed
    Some(Err(e)) => panic!("error decoding metadata: {:?}", e),
    None => panic!("row id out of range")
}

Implementations

Clear the table.

Methods from Deref<Target = NodeTable>

Return the number of rows

Return the time value from row row of the table.

Returns
  • Some(time) if row is valid.
  • None otherwise.
Examples
if let Some(time) = tables.nodes().time(0) {
// then node id 0 is a valid row id
}

Return the flags value from row row of the table.

Returns
  • Some(flags) if row is valid.
  • None otherwise.
Examples
if let Some(flags) = tables.nodes().flags(0) {
// then node id 0 is a valid row id
}

Mutable access to node flags.

Examples
let flags = tables.nodes_mut().flags_array_mut();
for flag in flags {
// Can do something...
}
for flag in  tables.nodes_mut().flags_array_mut() {
}

The returned slice is mutable, allowing one to do things like clear the sample status of all nodes:

A copy of the flags can be obtained by collecting results into Vec:

for flag in tables.nodes_mut().flags_array_mut() {
    flag.remove(tskit::NodeFlags::IS_SAMPLE);
}
assert!(!tables.nodes_mut().flags_array_mut().iter().any(|f| f.is_sample()));
assert!(tables.nodes().samples_as_vector().is_empty());
let flags = tables.nodes_mut().flags_array_mut().to_vec();
Standalone tables

The ownership semantics differ when tables are not part of a table collection:

let mut nodes = tskit::OwnedNodeTable::default();
assert!(nodes.add_row(tskit::NodeFlags::IS_SAMPLE, 10., -1, -1).is_ok());
let flags = nodes.flags_array_mut();
assert!(flags.iter().all(|f| f.is_sample()));

// while we are at it, let's use our node
// table to populate a table collection.
let mut tables = tskit::TableCollection::new(10.0).unwrap();
tables.set_nodes(&nodes);
assert_eq!(tables.nodes().num_rows(), 1);
assert_eq!(tables.nodes_mut().flags_array_mut().iter().filter(|f| f.is_sample()).count(), 1);
Note

Internally, we rely on a conversion of u64 to usize. This conversion is fallible on some platforms. If the conversion fails, an empty slice is returned.

Mutable access to node times.

Examples

For a crate::TableCollection, accessing the table creates a temporary that will be dropped, causing this code to not compile:

let time = tables.nodes().time_array_mut();
println!("{}", time.len()); // ERROR: the temporary node table is dropped by now

Treating the returned slice as an iterable succeeds:

for time in tables.nodes_mut().time_array_mut() {
    *time = 55.0.into(); // change each node's time value
}
assert!(tables.nodes_mut().time_array_mut().iter().all(|t| t == &55.0));
Note

Internally, we rely on a conversion of u64 to usize. This conversion is fallible on some platforms. If the conversion fails, an empty slice is returned.

Return the population value from row row of the table.

Examples
if let Some(pop) = tables.nodes().population(0) {
// then node id 0 is a valid row id
}
Returns
  • Some(population) if row is valid.
  • None otherwise.

Return the population value from row row of the table.

Examples

See NodeTable::population for examples.

Returns
  • Some(population) if row is valid.
  • None otherwise.

Return the individual value from row row of the table.

Examples
if let Some(individual) = tables.nodes().individual(0) {
// then node id 0 is a valid row id
}
Returns
  • Some(individual) if row is valid.
  • None otherwise.

Retrieve decoded metadata for a row.

Returns
  • Some(Ok(T)) if row is valid and decoding succeeded.
  • Some(Err(_)) if row is not valid and decoding failed.
  • None if row is not valid.
Errors
Examples.

The big-picture semantics are the same for all table types. See crate::IndividualTable::metadata for examples.

Return an iterator over rows of the table. The value of the iterator is NodeTableRow.

Return row r of the table.

Parameters
  • r: the row id.
Returns
  • Some(row) if r is valid
  • None otherwise

Obtain a vector containing the indexes (“ids”) of all nodes for which crate::TSK_NODE_IS_SAMPLE is true.

Obtain a vector containing the indexes (“ids”) of all nodes satisfying a certain criterion.

Trait Implementations

Returns the “default value” for a type. Read more
The resulting type after dereferencing.
Dereferences the value.
Mutably dereferences the value.
Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
Drops the content pointed by this pointer and frees it. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.