.gitignore 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. .snakemake
  2. temp*
  3. sandbox*
  4. get_*
  5. set_*
  6. *.gdf
  7. *.snakemake_timestamp
  8. *.npy
  9. *.pkl
  10. *.dat
  11. *.swp
  12. *.json
  13. Slurm/
  14. nest-simulator*/
  15. # git annex folders
  16. !/stochastic_activity/correlation_matrices/**
  17. !/polychrony_network/simulation_output/**
  18. !/balanced_network/simulation_output/**
  19. # Byte-compiled / optimized / DLL files
  20. __pycache__/
  21. */__pycache__/
  22. *.py[cod]
  23. *$py.class
  24. # C extensions
  25. *.so
  26. # Distribution / packaging
  27. .Python
  28. build/
  29. develop-eggs/
  30. dist/
  31. downloads/
  32. eggs/
  33. .eggs/
  34. lib/
  35. lib64/
  36. parts/
  37. sdist/
  38. var/
  39. wheels/
  40. *.egg-info/
  41. .installed.cfg
  42. *.egg
  43. MANIFEST
  44. # PyInstaller
  45. # Usually these files are written by a python script from a template
  46. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  47. *.manifest
  48. *.spec
  49. # Installer logs
  50. pip-log.txt
  51. pip-delete-this-directory.txt
  52. # Unit test / coverage reports
  53. htmlcov/
  54. .tox/
  55. .coverage
  56. .coverage.*
  57. .cache
  58. nosetests.xml
  59. coverage.xml
  60. *.cover
  61. .hypothesis/
  62. .pytest_cache/
  63. # Translations
  64. *.mo
  65. *.pot
  66. # Django stuff:
  67. *.log
  68. local_settings.py
  69. db.sqlite3
  70. # Flask stuff:
  71. instance/
  72. .webassets-cache
  73. # Scrapy stuff:
  74. .scrapy
  75. # Sphinx documentation
  76. docs/_build/
  77. # PyBuilder
  78. target/
  79. # Jupyter Notebook
  80. .ipynb_checkpoints
  81. # pyenv
  82. .python-version
  83. # celery beat schedule file
  84. celerybeat-schedule
  85. # SageMath parsed files
  86. *.sage.py
  87. # Environments
  88. .env
  89. .venv
  90. env/
  91. venv/
  92. ENV/
  93. env.bak/
  94. venv.bak/
  95. # Spyder project settings
  96. .spyderproject
  97. .spyproject
  98. # Rope project settings
  99. .ropeproject
  100. # mkdocs documentation
  101. /site
  102. # mypy
  103. .mypy_cache/