pyLoopSage 1.0.3__tar.gz → 1.0.4__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.3 → pyloopsage-1.0.4}/PKG-INFO +1 -1
- {pyloopsage-1.0.3 → pyloopsage-1.0.4}/loopsage/__init__.py +1 -1
- {pyloopsage-1.0.3 → pyloopsage-1.0.4}/loopsage/run.py +2 -2
- {pyloopsage-1.0.3 → pyloopsage-1.0.4}/pyLoopSage.egg-info/PKG-INFO +1 -1
- {pyloopsage-1.0.3 → pyloopsage-1.0.4}/setup.py +1 -1
- {pyloopsage-1.0.3 → pyloopsage-1.0.4}/LICENSE +0 -0
- {pyloopsage-1.0.3 → pyloopsage-1.0.4}/README.md +0 -0
- {pyloopsage-1.0.3 → pyloopsage-1.0.4}/loopsage/args_definition.py +0 -0
- {pyloopsage-1.0.3 → pyloopsage-1.0.4}/loopsage/em.py +0 -0
- {pyloopsage-1.0.3 → pyloopsage-1.0.4}/loopsage/initial_structures.py +0 -0
- {pyloopsage-1.0.3 → pyloopsage-1.0.4}/loopsage/md.py +0 -0
- {pyloopsage-1.0.3 → pyloopsage-1.0.4}/loopsage/plots.py +0 -0
- {pyloopsage-1.0.3 → pyloopsage-1.0.4}/loopsage/preproc.py +0 -0
- {pyloopsage-1.0.3 → pyloopsage-1.0.4}/loopsage/stochastic_simulation.py +0 -0
- {pyloopsage-1.0.3 → pyloopsage-1.0.4}/loopsage/utils.py +0 -0
- {pyloopsage-1.0.3 → pyloopsage-1.0.4}/loopsage/vizualization_tools.py +0 -0
- {pyloopsage-1.0.3 → pyloopsage-1.0.4}/pyLoopSage.egg-info/SOURCES.txt +0 -0
- {pyloopsage-1.0.3 → pyloopsage-1.0.4}/pyLoopSage.egg-info/dependency_links.txt +0 -0
- {pyloopsage-1.0.3 → pyloopsage-1.0.4}/pyLoopSage.egg-info/entry_points.txt +0 -0
- {pyloopsage-1.0.3 → pyloopsage-1.0.4}/pyLoopSage.egg-info/requires.txt +0 -0
- {pyloopsage-1.0.3 → pyloopsage-1.0.4}/pyLoopSage.egg-info/top_level.txt +0 -0
- {pyloopsage-1.0.3 → pyloopsage-1.0.4}/setup.cfg +0 -0
|
@@ -74,11 +74,11 @@ def main():
|
|
|
74
74
|
if args.SIMULATION_TYPE=='EM':
|
|
75
75
|
sim.run_EM(args.PLATFORM,args.ANGLE_FF_STRENGTH,args.LE_FF_LENGTH,args.LE_FF_STRENGTH,args.EV_FF_STRENGTH,args.TOLERANCE)
|
|
76
76
|
elif args.SIMULATION_TYPE=='MD':
|
|
77
|
-
sim.run_MD(args.PLATFORM,args.ANGLE_FF_STRENGTH,args.LE_FF_LENGTH,args.LE_FF_STRENGTH,args.EV_FF_STRENGTH,args.TOLERANCE,args.
|
|
77
|
+
sim.run_MD(args.PLATFORM,args.ANGLE_FF_STRENGTH,args.LE_FF_LENGTH,args.LE_FF_STRENGTH,args.EV_FF_STRENGTH,args.TOLERANCE,args.SIM_STEP)
|
|
78
78
|
elif args.SIMULATION_TYPE==None:
|
|
79
79
|
print('\n3D simulation did not run because it was not specified. Please specify argument SIMULATION_TYPE as EM or MD.')
|
|
80
80
|
else:
|
|
81
81
|
IndentationError('Uknown simulation type. It can be either MD or EM.')
|
|
82
82
|
|
|
83
83
|
if __name__=='__main__':
|
|
84
|
-
main()
|
|
84
|
+
main()
|
|
@@ -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.4', # 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
|