Skip to content

Commit 7cefbc3

Browse files
committed
server/commands/run/import: Use counts reader from core
1 parent 5ea2b2d commit 7cefbc3

File tree

7 files changed

+49
-367
lines changed

7 files changed

+49
-367
lines changed

atlas-server/src/commands/run/import.rs

+30-7
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use tracing::info;
99

1010
use crate::{
1111
cli::run::ImportConfig,
12-
counts::{feature_names_eq, reader::read_counts, Format},
12+
counts::{feature_names_eq, Format},
1313
store::{dataset, StrandSpecification},
1414
};
1515

@@ -99,9 +99,7 @@ where
9999
// SAFETY: `str::Split` always has at least one item.
100100
let sample_name = filename.split(sample_name_delimiter).next().unwrap();
101101

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?;
105103

106104
chunk.push((sample_name.into(), counts));
107105
}
@@ -153,9 +151,7 @@ where
153151
.split_once(DELIMITER)
154152
.ok_or_else(|| io::Error::from(io::ErrorKind::InvalidData))?;
155153

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?;
159155

160156
chunk.push((sample_name.into(), counts));
161157

@@ -237,3 +233,30 @@ async fn import_batch(
237233

238234
Ok(())
239235
}
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+
}

atlas-server/src/counts.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
mod format;
2-
pub mod reader;
32

43
pub use self::format::Format;
54

atlas-server/src/counts/format.rs

+9
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,12 @@ pub enum Format {
77
/// STAR counts.
88
Star,
99
}
10+
11+
impl From<Format> for atlas_core::counts::reader::Format {
12+
fn from(format: Format) -> Self {
13+
match format {
14+
Format::HtseqCount => Self::HtseqCount,
15+
Format::Star => Self::Star,
16+
}
17+
}
18+
}

atlas-server/src/counts/reader.rs

-117
This file was deleted.

atlas-server/src/counts/reader/htseq_count.rs

-83
This file was deleted.

0 commit comments

Comments
 (0)