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.
- {pyloopsage-1.0.8 → pyloopsage-1.0.9}/PKG-INFO +1 -1
- {pyloopsage-1.0.8 → pyloopsage-1.0.9}/loopsage/__init__.py +1 -1
- {pyloopsage-1.0.8 → pyloopsage-1.0.9}/loopsage/args_definition.py +2 -2
- {pyloopsage-1.0.8 → pyloopsage-1.0.9}/pyLoopSage.egg-info/PKG-INFO +1 -1
- {pyloopsage-1.0.8 → pyloopsage-1.0.9}/setup.py +1 -1
- {pyloopsage-1.0.8 → pyloopsage-1.0.9}/LICENSE +0 -0
- {pyloopsage-1.0.8 → pyloopsage-1.0.9}/README.md +0 -0
- {pyloopsage-1.0.8 → pyloopsage-1.0.9}/loopsage/em.py +0 -0
- {pyloopsage-1.0.8 → pyloopsage-1.0.9}/loopsage/initial_structures.py +0 -0
- {pyloopsage-1.0.8 → pyloopsage-1.0.9}/loopsage/md.py +0 -0
- {pyloopsage-1.0.8 → pyloopsage-1.0.9}/loopsage/plots.py +0 -0
- {pyloopsage-1.0.8 → pyloopsage-1.0.9}/loopsage/preproc.py +0 -0
- {pyloopsage-1.0.8 → pyloopsage-1.0.9}/loopsage/run.py +0 -0
- {pyloopsage-1.0.8 → pyloopsage-1.0.9}/loopsage/stochastic_simulation.py +0 -0
- {pyloopsage-1.0.8 → pyloopsage-1.0.9}/loopsage/utils.py +0 -0
- {pyloopsage-1.0.8 → pyloopsage-1.0.9}/loopsage/vizualization_tools.py +0 -0
- {pyloopsage-1.0.8 → pyloopsage-1.0.9}/pyLoopSage.egg-info/SOURCES.txt +0 -0
- {pyloopsage-1.0.8 → pyloopsage-1.0.9}/pyLoopSage.egg-info/dependency_links.txt +0 -0
- {pyloopsage-1.0.8 → pyloopsage-1.0.9}/pyLoopSage.egg-info/entry_points.txt +0 -0
- {pyloopsage-1.0.8 → pyloopsage-1.0.9}/pyLoopSage.egg-info/requires.txt +0 -0
- {pyloopsage-1.0.8 → pyloopsage-1.0.9}/pyLoopSage.egg-info/top_level.txt +0 -0
- {pyloopsage-1.0.8 → pyloopsage-1.0.9}/setup.cfg +0 -0
|
@@ -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=
|
|
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
|
+
])
|
|
@@ -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='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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|