phago-cli 1.0.0

Command-line interface for Phago biological computing framework
1
2
3
4
5
6
7
8
9
10
11
12
13
//! CLI command implementations.

pub mod init;
pub mod ingest;
pub mod run;
pub mod query;
pub mod explore;
pub mod export;
pub mod session;
pub mod stats;

#[cfg(feature = "distributed")]
pub mod cluster;