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.
Files changed (22) hide show
  1. {pyloopsage-1.0.3 → pyloopsage-1.0.4}/PKG-INFO +1 -1
  2. {pyloopsage-1.0.3 → pyloopsage-1.0.4}/loopsage/__init__.py +1 -1
  3. {pyloopsage-1.0.3 → pyloopsage-1.0.4}/loopsage/run.py +2 -2
  4. {pyloopsage-1.0.3 → pyloopsage-1.0.4}/pyLoopSage.egg-info/PKG-INFO +1 -1
  5. {pyloopsage-1.0.3 → pyloopsage-1.0.4}/setup.py +1 -1
  6. {pyloopsage-1.0.3 → pyloopsage-1.0.4}/LICENSE +0 -0
  7. {pyloopsage-1.0.3 → pyloopsage-1.0.4}/README.md +0 -0
  8. {pyloopsage-1.0.3 → pyloopsage-1.0.4}/loopsage/args_definition.py +0 -0
  9. {pyloopsage-1.0.3 → pyloopsage-1.0.4}/loopsage/em.py +0 -0
  10. {pyloopsage-1.0.3 → pyloopsage-1.0.4}/loopsage/initial_structures.py +0 -0
  11. {pyloopsage-1.0.3 → pyloopsage-1.0.4}/loopsage/md.py +0 -0
  12. {pyloopsage-1.0.3 → pyloopsage-1.0.4}/loopsage/plots.py +0 -0
  13. {pyloopsage-1.0.3 → pyloopsage-1.0.4}/loopsage/preproc.py +0 -0
  14. {pyloopsage-1.0.3 → pyloopsage-1.0.4}/loopsage/stochastic_simulation.py +0 -0
  15. {pyloopsage-1.0.3 → pyloopsage-1.0.4}/loopsage/utils.py +0 -0
  16. {pyloopsage-1.0.3 → pyloopsage-1.0.4}/loopsage/vizualization_tools.py +0 -0
  17. {pyloopsage-1.0.3 → pyloopsage-1.0.4}/pyLoopSage.egg-info/SOURCES.txt +0 -0
  18. {pyloopsage-1.0.3 → pyloopsage-1.0.4}/pyLoopSage.egg-info/dependency_links.txt +0 -0
  19. {pyloopsage-1.0.3 → pyloopsage-1.0.4}/pyLoopSage.egg-info/entry_points.txt +0 -0
  20. {pyloopsage-1.0.3 → pyloopsage-1.0.4}/pyLoopSage.egg-info/requires.txt +0 -0
  21. {pyloopsage-1.0.3 → pyloopsage-1.0.4}/pyLoopSage.egg-info/top_level.txt +0 -0
  22. {pyloopsage-1.0.3 → pyloopsage-1.0.4}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyLoopSage
3
- Version: 1.0.3
3
+ Version: 1.0.4
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.3"
4
+ __version__ = "1.0.4"
@@ -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.SIM)
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()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyLoopSage
3
- Version: 1.0.3
3
+ Version: 1.0.4
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.3', # Version of the software
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