seq_here/
extract.rs

1use std::path::PathBuf;
2
3pub struct ExtractSegment;
4
5impl ExtractSegment {
6    pub fn extract_id(paths: Vec<PathBuf>, id: String) {
7
8    }
9
10    pub fn extract_id_files(paths: Vec<PathBuf>, id_file: PathBuf) {
11
12    }
13
14}
15
16
17pub struct ExtractExplain;
18
19impl ExtractExplain {
20    pub fn extract(seq_files: Vec<PathBuf>, anno_files: Vec<PathBuf>) {
21
22    }
23}