Skip to content

Commit

Permalink
v0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fraterenz committed Aug 11, 2022
1 parent 02f9f2c commit e05cb7b
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 9 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,12 @@ both `abc` and `simulate`).
- Bug in the cell culture experiment with subsampling: restarting from one
subsample from the whole distribution with correct `idx`, issue #65

## 0.4.2
### Fixed
- Sampling was performed with replacement, now without replacement (might
need more memory)
- Remove `results` folder from preprocess app
- The computation of the `ks_distance` has changed by taking into account the
loss of precision in converting `u16` to `f16`
- Dont panic when computing the variance when there are no N+ cells, but return 0

8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ codegen-units = 1

[workspace.metadata]
name = "ecdna"
version = "0.4.1"
version = "0.4.2"

2 changes: 1 addition & 1 deletion ecdna-data/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ecdna-data"
version = "0.4.1"
version = "0.4.2"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion ecdna-dynamics/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ecdna-dynamics"
version = "0.4.1"
version = "0.4.2"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion ecdna-sim/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ecdna-sim"
version = "0.4.1"
version = "0.4.2"
edition = "2021"
authors = ["Francesco Terenzi"]
description = "Evolutionary models of extrachromosomal DNA (ecDNA)."
Expand Down
2 changes: 1 addition & 1 deletion ecdna/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ecdna"
version = "0.4.1"
version = "0.4.2"
edition = "2021"
authors = ["Francesco Terenzi"]
description = "Evolutionary Models of extrachromosomal DNAs"
Expand Down

0 comments on commit e05cb7b

Please sign in to comment.