Skip to content

Commit bb74b25

Browse files
committed
bumped v0.1.9
1 parent ae63436 commit bb74b25

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rogtk"
3-
version = "0.1.8"
3+
version = "0.1.9"
44
authors = [
55
"Pedro Olivares Chauvet <[email protected]>",
66
"Pedro Olivares Chauvet <[email protected]>",

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "maturin"
77

88
[project]
99
name = "rogtk"
10-
version = "0.1.8"
10+
version = "0.1.9"
1111
requires-python = ">=3.8"
1212
classifiers = [
1313
"Programming Language :: Rust",

src/expressions.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ fn split_string(phred_str: &str, output: &mut String, base: u8) {
226226

227227
// fracture
228228
#[derive(Deserialize, Debug)]
229-
229+
#[allow(dead_code)]
230230
struct AssemblyKwargs {
231231
k: usize,
232232
min_coverage: usize,
@@ -317,6 +317,7 @@ fn assemble_sequences_expr(inputs: &[Series], kwargs: AssemblyKwargs) -> PolarsR
317317
}
318318

319319
#[derive(Deserialize)]
320+
#[allow(dead_code)]
320321
struct SweepParams {
321322
k_start: usize,
322323
k_end: usize,

src/fracture_opt.rs

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ use crate::djfind::AssemblyMethod;
88
use log::*;
99

1010
#[derive(Deserialize)]
11+
#[allow(dead_code)]
1112
pub struct OptimizeParams {
1213
pub start_anchor: Option<String>,
1314
pub end_anchor: Option<String>,

0 commit comments

Comments
 (0)