cyto_cli/map/probe.rs
1use clap::Parser;
2
3#[derive(Parser, Debug)]
4#[clap(next_help_heading = "Probe Options")]
5pub struct ProbeOptions {
6 #[clap(short = 'p', long = "probes")]
7 pub probes_filepath: Option<String>,
8
9 /// Only match probes whose alias matches the given regex
10 ///
11 /// i.e. "BC00[123]" will only match probes with aliases starting with "BC00" followed by a digit from 1 to 3.
12 #[clap(short = 'r', long = "regex")]
13 pub regex: Option<String>,
14}