@@ -9,7 +9,7 @@ use tracing::info;
9
9
10
10
use crate :: {
11
11
cli:: run:: ImportConfig ,
12
- counts:: { feature_names_eq, reader :: read_counts , Format } ,
12
+ counts:: { feature_names_eq, Format } ,
13
13
store:: { dataset, StrandSpecification } ,
14
14
} ;
15
15
99
99
// SAFETY: `str::Split` always has at least one item.
100
100
let sample_name = filename. split ( sample_name_delimiter) . next ( ) . unwrap ( ) ;
101
101
102
- let mut reader = File :: open ( path) . await . map ( BufReader :: new) ?;
103
- let counts =
104
- read_counts ( & mut reader, format, feature_name, strand_specification) . await ?;
102
+ let counts = read_counts ( path, format, feature_name, strand_specification) . await ?;
105
103
106
104
chunk. push ( ( sample_name. into ( ) , counts) ) ;
107
105
}
@@ -153,9 +151,7 @@ where
153
151
. split_once ( DELIMITER )
154
152
. ok_or_else ( || io:: Error :: from ( io:: ErrorKind :: InvalidData ) ) ?;
155
153
156
- let mut reader = File :: open ( src) . await . map ( BufReader :: new) ?;
157
- let counts =
158
- read_counts ( & mut reader, format, feature_name, strand_specification) . await ?;
154
+ let counts = read_counts ( src, format, feature_name, strand_specification) . await ?;
159
155
160
156
chunk. push ( ( sample_name. into ( ) , counts) ) ;
161
157
@@ -237,3 +233,30 @@ async fn import_batch(
237
233
238
234
Ok ( ( ) )
239
235
}
236
+
237
+ async fn read_counts < P > (
238
+ src : P ,
239
+ format : Option < Format > ,
240
+ feature_name : & str ,
241
+ strand_specification : StrandSpecification ,
242
+ ) -> anyhow:: Result < HashMap < String , u64 > >
243
+ where
244
+ P : AsRef < Path > ,
245
+ {
246
+ let src = src. as_ref ( ) . to_path_buf ( ) ;
247
+ let feature_name = feature_name. to_owned ( ) ;
248
+
249
+ let counts = tokio:: task:: spawn_blocking ( move || {
250
+ let mut reader = std:: fs:: File :: open ( src) . map ( std:: io:: BufReader :: new) ?;
251
+
252
+ atlas_core:: counts:: reader:: read (
253
+ & mut reader,
254
+ format. map ( |f| f. into ( ) ) ,
255
+ & feature_name,
256
+ strand_specification. into ( ) ,
257
+ )
258
+ } )
259
+ . await ??;
260
+
261
+ Ok ( counts. into_iter ( ) . collect ( ) )
262
+ }
0 commit comments