Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #30

Merged
merged 3 commits into from
Aug 26, 2024
Merged

Dev #30

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oarfish"
version = "0.6.0"
version = "0.6.1"
edition = "2021"
authors = [
"Zahra Zare Jousheghani <[email protected]>",
Expand Down Expand Up @@ -60,7 +60,7 @@ crossbeam = { version = "0.8.4", features = [
sprs = "0.11.1"
minimap2-sys = { version = "0.1.19" }
# rely on minimap2-temp until upstream version is pushed
minimap2-temp = { version = "0.1.30" }
minimap2-temp = { version = "0.1.31" }
# alternative sources for dev
#git = "https://github.com/rob-p/minimap2-rs.git", branch = "alignment-score" }
#git = "https://github.com/jguhlin/minimap2-rs.git", branch = "alignment-score" }
Expand Down
1 change: 1 addition & 0 deletions src/util/aux_counts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ use itertools::izip;
pub struct CountInfo {
pub unique_count: u32,
pub total_count: u32,
#[allow(dead_code)]
pub expected_count: f64,
}

Expand Down
3 changes: 3 additions & 0 deletions src/util/oarfish_types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,11 @@ impl<T: sam::alignment::record::Record> From<&T> for AlnInfo {
#[serde(rename_all = "PascalCase")]
pub struct ShortReadRecord {
pub name: String,
#[allow(dead_code)]
pub length: i32,
#[allow(dead_code)]
pub effective_length: f64,
#[allow(dead_code)]
#[serde(rename = "TPM")]
pub tpm: f64,
pub num_reads: f64,
Expand Down