posebench-fast 0.1.1__tar.gz → 0.1.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: posebench-fast
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: Fast docking evaluation metrics: symmetry-corrected RMSD and PoseBusters filters
5
5
  Keywords: docking,rmsd,posebusters,molecular-docking,benchmark
6
6
  Author: Nikolenko
@@ -194,7 +194,6 @@ metrics_df, scored = get_final_results_for_df(
194
194
  - **[PoseBench](https://github.com/BioinfoMachineLearning/PoseBench)** - Original comprehensive benchmark suite for molecular docking. Use if you need full datasets and reproducible benchmark runs.
195
195
  - [spyrmsd](https://github.com/RMeli/spyrmsd) - Symmetry-corrected RMSD algorithms
196
196
  - [PoseBusters](https://github.com/maabuu/posebusters) - Full physical validity validation (27 tests)
197
- - [DiffDock](https://github.com/gcorso/DiffDock) - Fast filter implementations origin
198
197
 
199
198
  ## License
200
199
 
@@ -173,7 +173,6 @@ metrics_df, scored = get_final_results_for_df(
173
173
  - **[PoseBench](https://github.com/BioinfoMachineLearning/PoseBench)** - Original comprehensive benchmark suite for molecular docking. Use if you need full datasets and reproducible benchmark runs.
174
174
  - [spyrmsd](https://github.com/RMeli/spyrmsd) - Symmetry-corrected RMSD algorithms
175
175
  - [PoseBusters](https://github.com/maabuu/posebusters) - Full physical validity validation (27 tests)
176
- - [DiffDock](https://github.com/gcorso/DiffDock) - Fast filter implementations origin
177
176
 
178
177
  ## License
179
178
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "posebench-fast"
3
- version = "0.1.1"
3
+ version = "0.1.2"
4
4
  description = "Fast docking evaluation metrics: symmetry-corrected RMSD and PoseBusters filters"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
@@ -29,7 +29,7 @@ from posebench_fast.metrics.rmsd import (
29
29
  time_limit,
30
30
  )
31
31
 
32
- __version__ = "0.1.1"
32
+ __version__ = "0.1.2"
33
33
 
34
34
  __all__ = [
35
35
  # RMSD
@@ -1,4 +1,4 @@
1
- # Taken from https://github.com/RMeli/spyrmsd and https://github.com/gcorso/DiffDock/
1
+ # Based on https://github.com/RMeli/spyrmsd
2
2
 
3
3
  import signal
4
4
  from contextlib import contextmanager