-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support ionic repulsion, parquet output, rename out file, and lots of…
… bugfixes (#10) * feat(contacts): add detection of repulsion between like charges * fix(contacts): add check for hydrogen bond length upper limit * refactor(contacts): reduce the amount of else None returns * fix(hbond): do not skip polar contact id when hbonds are not satisfied * feat(io): support parquet, json, and ndjson output formats * perf(io): no need to use f64 and i64 for saving results * feat(cli): allow renaming output file of contacts and sasa * feat(cli): modify logging levels to be less verbose by default * fix(ring): skip ring calculation if atoms are missing * fix(parser): correctly parse residue insertion codes and conformer altloc positions * build(cargo): update dependencies * docs: changelog for v0.4.0 release
- Loading branch information
Showing
12 changed files
with
366 additions
and
167 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,23 @@ | ||
[package] | ||
name = "arpeggia" | ||
version = "0.3.1" | ||
version = "0.4.0" | ||
description = "A port of the Arpeggio library for Rust" | ||
edition = "2021" | ||
authors = ["Yi Zhou <[email protected]>"] | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
clap = { version = "4.5.4", features = ["derive"] } | ||
nalgebra = "0.32.5" | ||
pdbtbx = { version = "0.11.0", features = ["rayon", "rstar"], git = "https://github.com/douweschulte/pdbtbx", rev = "1298c60e8573efbc3f7c77a9a2d6f0656fa8c638" } | ||
polars = { version = "0.39.2", features = ["lazy"] } | ||
clap = { version = "4.5.29", features = ["derive"] } | ||
nalgebra = "0.33.2" | ||
# pdbtbx = { version = "0.11.0", features = [ | ||
# "rayon", | ||
# "rstar", | ||
# ], git = "https://github.com/douweschulte/pdbtbx", rev = "1298c60e8573efbc3f7c77a9a2d6f0656fa8c638" } | ||
pdbtbx = { version = "0.12.0", features = ["rayon", "rstar"] } | ||
polars = { version = "0.46.0", features = ["lazy", "parquet", "json"] } | ||
rayon = "1.10.0" | ||
rstar = "0.12.0" | ||
rust-sasa = "0.2.2" | ||
tracing = "0.1.40" | ||
tracing-subscriber = "0.3.18" | ||
rstar = "0.12.2" | ||
rust-sasa = "0.2.4" | ||
tracing = "0.1.41" | ||
tracing-subscriber = "0.3.19" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.