pyLoopSage 1.0.8__tar.gz → 1.0.9__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.
Files changed (22) hide show
  1. {pyloopsage-1.0.8 → pyloopsage-1.0.9}/PKG-INFO +1 -1
  2. {pyloopsage-1.0.8 → pyloopsage-1.0.9}/loopsage/__init__.py +1 -1
  3. {pyloopsage-1.0.8 → pyloopsage-1.0.9}/loopsage/args_definition.py +2 -2
  4. {pyloopsage-1.0.8 → pyloopsage-1.0.9}/pyLoopSage.egg-info/PKG-INFO +1 -1
  5. {pyloopsage-1.0.8 → pyloopsage-1.0.9}/setup.py +1 -1
  6. {pyloopsage-1.0.8 → pyloopsage-1.0.9}/LICENSE +0 -0
  7. {pyloopsage-1.0.8 → pyloopsage-1.0.9}/README.md +0 -0
  8. {pyloopsage-1.0.8 → pyloopsage-1.0.9}/loopsage/em.py +0 -0
  9. {pyloopsage-1.0.8 → pyloopsage-1.0.9}/loopsage/initial_structures.py +0 -0
  10. {pyloopsage-1.0.8 → pyloopsage-1.0.9}/loopsage/md.py +0 -0
  11. {pyloopsage-1.0.8 → pyloopsage-1.0.9}/loopsage/plots.py +0 -0
  12. {pyloopsage-1.0.8 → pyloopsage-1.0.9}/loopsage/preproc.py +0 -0
  13. {pyloopsage-1.0.8 → pyloopsage-1.0.9}/loopsage/run.py +0 -0
  14. {pyloopsage-1.0.8 → pyloopsage-1.0.9}/loopsage/stochastic_simulation.py +0 -0
  15. {pyloopsage-1.0.8 → pyloopsage-1.0.9}/loopsage/utils.py +0 -0
  16. {pyloopsage-1.0.8 → pyloopsage-1.0.9}/loopsage/vizualization_tools.py +0 -0
  17. {pyloopsage-1.0.8 → pyloopsage-1.0.9}/pyLoopSage.egg-info/SOURCES.txt +0 -0
  18. {pyloopsage-1.0.8 → pyloopsage-1.0.9}/pyLoopSage.egg-info/dependency_links.txt +0 -0
  19. {pyloopsage-1.0.8 → pyloopsage-1.0.9}/pyLoopSage.egg-info/entry_points.txt +0 -0
  20. {pyloopsage-1.0.8 → pyloopsage-1.0.9}/pyLoopSage.egg-info/requires.txt +0 -0
  21. {pyloopsage-1.0.8 → pyloopsage-1.0.9}/pyLoopSage.egg-info/top_level.txt +0 -0
  22. {pyloopsage-1.0.8 → pyloopsage-1.0.9}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyLoopSage
3
- Version: 1.0.8
3
+ Version: 1.0.9
4
4
  Summary: An energy-based stochastic model of loop extrusion in chromatin.
5
5
  Home-page: https://github.com/SFGLab/pyLoopSage
6
6
  Author: Sebastian Korsak
@@ -1,4 +1,4 @@
1
1
  # Importing specific functions or classes from submodules
2
2
  from .run import main
3
3
 
4
- __version__ = "1.0.8"
4
+ __version__ = "1.0.9"
@@ -160,7 +160,7 @@ args = ListOfArgs([
160
160
  Arg('EV_FF_STRENGTH', help="Excluded-volume strength.", type=float, default='10.0', val='10.0'),
161
161
  Arg('FRICTION',help='Friction coefficient of the Langevin integrator.',type=float, default='0.1', val='0.1'),
162
162
  Arg('TOLERANCE', help="Tolerance that works as stopping condition for energy minimization.", type=float, default='0.001', val='0.001'),
163
- Arg('VIZ_HEATS', help="Visualize the output average heatmap.", type=Bool, default='True', val='True'),
163
+ Arg('VIZ_HEATS', help="Visualize the output average heatmap.", type=bool, default='True', val='True'),
164
164
  Arg('SIM_TEMP', help="The temperature of the 3D simulation (EM or MD).", type=Quantity, default='310 kelvin', val='310 kelvin'),
165
165
  Arg('SIM_STEP', help="This is the amount of simulation steps that are perform each time that we change the loop forces. If this number is too high, the simulation is slow, if is too low it may not have enough time to adapt the structure to the new constraints.", type=int, default='10', val='10'),
166
- ])
166
+ ])
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyLoopSage
3
- Version: 1.0.8
3
+ Version: 1.0.9
4
4
  Summary: An energy-based stochastic model of loop extrusion in chromatin.
5
5
  Home-page: https://github.com/SFGLab/pyLoopSage
6
6
  Author: Sebastian Korsak
@@ -6,7 +6,7 @@ with open('README.md', 'r', encoding='utf-8') as f:
6
6
 
7
7
  setup(
8
8
  name='pyLoopSage', # Package name
9
- version='1.0.8', # Version of the software
9
+ version='1.0.9', # Version of the software
10
10
  description='An energy-based stochastic model of loop extrusion in chromatin.',
11
11
  long_description=long_description,
12
12
  long_description_content_type='text/markdown',
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes