pyLoopSage 1.0.9__tar.gz → 1.0.10__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.9 → pyloopsage-1.0.10}/PKG-INFO +1 -1
  2. {pyloopsage-1.0.9 → pyloopsage-1.0.10}/loopsage/__init__.py +1 -1
  3. {pyloopsage-1.0.9 → pyloopsage-1.0.10}/loopsage/args_definition.py +7 -7
  4. {pyloopsage-1.0.9 → pyloopsage-1.0.10}/pyLoopSage.egg-info/PKG-INFO +1 -1
  5. {pyloopsage-1.0.9 → pyloopsage-1.0.10}/setup.py +1 -1
  6. {pyloopsage-1.0.9 → pyloopsage-1.0.10}/LICENSE +0 -0
  7. {pyloopsage-1.0.9 → pyloopsage-1.0.10}/README.md +0 -0
  8. {pyloopsage-1.0.9 → pyloopsage-1.0.10}/loopsage/em.py +0 -0
  9. {pyloopsage-1.0.9 → pyloopsage-1.0.10}/loopsage/initial_structures.py +0 -0
  10. {pyloopsage-1.0.9 → pyloopsage-1.0.10}/loopsage/md.py +0 -0
  11. {pyloopsage-1.0.9 → pyloopsage-1.0.10}/loopsage/plots.py +0 -0
  12. {pyloopsage-1.0.9 → pyloopsage-1.0.10}/loopsage/preproc.py +0 -0
  13. {pyloopsage-1.0.9 → pyloopsage-1.0.10}/loopsage/run.py +0 -0
  14. {pyloopsage-1.0.9 → pyloopsage-1.0.10}/loopsage/stochastic_simulation.py +0 -0
  15. {pyloopsage-1.0.9 → pyloopsage-1.0.10}/loopsage/utils.py +0 -0
  16. {pyloopsage-1.0.9 → pyloopsage-1.0.10}/loopsage/vizualization_tools.py +0 -0
  17. {pyloopsage-1.0.9 → pyloopsage-1.0.10}/pyLoopSage.egg-info/SOURCES.txt +0 -0
  18. {pyloopsage-1.0.9 → pyloopsage-1.0.10}/pyLoopSage.egg-info/dependency_links.txt +0 -0
  19. {pyloopsage-1.0.9 → pyloopsage-1.0.10}/pyLoopSage.egg-info/entry_points.txt +0 -0
  20. {pyloopsage-1.0.9 → pyloopsage-1.0.10}/pyLoopSage.egg-info/requires.txt +0 -0
  21. {pyloopsage-1.0.9 → pyloopsage-1.0.10}/pyLoopSage.egg-info/top_level.txt +0 -0
  22. {pyloopsage-1.0.9 → pyloopsage-1.0.10}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyLoopSage
3
- Version: 1.0.9
3
+ Version: 1.0.10
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.9"
4
+ __version__ = "1.0.10"
@@ -136,12 +136,12 @@ args = ListOfArgs([
136
136
 
137
137
  # Stochastic Simulation parameters
138
138
  Arg('LEF_RW', help="True in case that you would like to make cohesins slide as random walk, instead of sliding only in one direction.", type=bool, default='True', val='True'),
139
- Arg('N_STEPS', help="Number of Monte Carlo steps.", type=int, default='', val=''),
139
+ Arg('N_STEPS', help="Number of Monte Carlo steps.", type=int, default='40000', val='40000'),
140
140
  Arg('N_LEF', help="Number of loop extrusion factors (condensins and cohesins).", type=int, default='', val=''),
141
- Arg('MC_STEP', help="Monte Carlo frequency. It should be hundreds of steps, except if you would like to include molecular dynamics (MD) and in this case it should be ideally 1.", type=int, default='200', val='200'),
141
+ Arg('MC_STEP', help="Monte Carlo frequency. It should be hundreds of steps so as to avoid autocorrelated ensembles.", type=int, default='200', val='200'),
142
142
  Arg('BURNIN', help="Burnin-period (steps that are considered before equillibrium).", type=int, default='1000', val='1000'),
143
- Arg('T_INIT', help="Initial Temperature of the Stochastic Model.", type=float, default='1.8', val='1.8'),
144
- Arg('T_FINAL', help="Final Temperature of the Stochastic Model.", type=float, default='0.01', val='0.01'),
143
+ Arg('T_INIT', help="Initial Temperature of the Stochastic Model.", type=float, default='2.0', val='2.0'),
144
+ Arg('T_FINAL', help="Final Temperature of the Stochastic Model.", type=float, default='1.0', val='1.0'),
145
145
  Arg('METHOD', help="Stochastic modelling method. It can be Metropolis or Simulated Annealing.", type=str, default='Annealing', val='Annealing'),
146
146
  Arg('FOLDING_COEFF', help="Folding coefficient.", type=float, default='1.0', val='1.0'),
147
147
  Arg('CROSS_COEFF', help="LEF crossing coefficient.", type=float, default='1.0', val='1.0'),
@@ -152,15 +152,15 @@ args = ListOfArgs([
152
152
  # Molecular Dynamic Properties
153
153
  Arg('INITIAL_STRUCTURE_TYPE', help="you can choose between: rw, confined_rw, self_avoiding_rw, helix, circle, spiral, sphere.", type=str, default='rw', val='rw'),
154
154
  Arg('SIMULATION_TYPE', help="It can be either EM (multiple energy minimizations) or MD (one energy minimization and then run molecular dynamics).", type=str, default='', val=''),
155
- Arg('INTEGRATOR_STEP', help="The step of the integrator.", type=Quantity, default='5 femtosecond', val='5 femtosecond'),
155
+ Arg('INTEGRATOR_STEP', help="The step of the integrator.", type=Quantity, default='100 femtosecond', val='100 femtosecond'),
156
156
  Arg('FORCEFIELD_PATH', help="Path to XML file with forcefield.", type=str, default='forcefield/classic_sm_ff.xml', val='forcefield/classic_sm_ff.xml'),
157
157
  Arg('ANGLE_FF_STRENGTH', help="Angle force strength.", type=float, default='200.0', val='200.0'),
158
158
  Arg('LE_FF_LENGTH', help="Equillibrium distance of loop forces.", type=float, default='0.1', val='0.1'),
159
- Arg('LE_FF_STRENGTH', help="Interaction Strength of loop forces.", type=float, default='3000.0', val='3000.0'),
159
+ Arg('LE_FF_STRENGTH', help="Interaction Strength of loop forces.", type=float, default='50000.0', val='50000.0'),
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
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
- 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'),
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='1000', val='1000'),
166
166
  ])
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyLoopSage
3
- Version: 1.0.9
3
+ Version: 1.0.10
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.9', # Version of the software
9
+ version='1.0.10', # 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