(dir: &TempDir)
| 95 | } |
| 96 | |
| 97 | fn open_engine(dir: &TempDir) -> ArrayEngine { |
| 98 | let mut e = ArrayEngine::new(ArrayEngineConfig::new(dir.path().to_path_buf())).unwrap(); |
| 99 | e.open_array(aid(), schema(), SCHEMA_HASH).unwrap(); |
| 100 | e |
| 101 | } |
| 102 | |
| 103 | fn coord(sample_id: i64, chromosome: i64, position: i64) -> Vec<CoordValue> { |
| 104 | vec![ |
no test coverage detected