.gitignore 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. cobrawap_output/*
  2. cluster_files/
  3. snakejob.sh
  4. miniconda3/
  5. .snakemake/
  6. temp*
  7. temp*/
  8. .idea/
  9. # Byte-compiled / optimized / DLL files
  10. __pycache__/
  11. *.py[cod]
  12. *$py.class
  13. # C extensions
  14. *.so
  15. # Distribution / packaging
  16. .Python
  17. build/
  18. develop-eggs/
  19. dist/
  20. downloads/
  21. eggs/
  22. .eggs/
  23. lib/
  24. lib64/
  25. parts/
  26. sdist/
  27. var/
  28. wheels/
  29. pip-wheel-metadata/
  30. share/python-wheels/
  31. *.egg-info/
  32. .installed.cfg
  33. *.egg
  34. MANIFEST
  35. # PyInstaller
  36. # Usually these files are written by a python script from a template
  37. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  38. *.manifest
  39. *.spec
  40. # Installer logs
  41. pip-log.txt
  42. pip-delete-this-directory.txt
  43. # Unit test / coverage reports
  44. htmlcov/
  45. .tox/
  46. .nox/
  47. .coverage
  48. .coverage.*
  49. .cache
  50. nosetests.xml
  51. coverage.xml
  52. *.cover
  53. *.py,cover
  54. .hypothesis/
  55. .pytest_cache/
  56. # Translations
  57. *.mo
  58. *.pot
  59. # Django stuff:
  60. *.log
  61. local_settings.py
  62. db.sqlite3
  63. db.sqlite3-journal
  64. # Flask stuff:
  65. instance/
  66. .webassets-cache
  67. # Scrapy stuff:
  68. .scrapy
  69. # Sphinx documentation
  70. docs/_build/
  71. # PyBuilder
  72. target/
  73. # Jupyter Notebook
  74. .ipynb_checkpoints
  75. # IPython
  76. profile_default/
  77. ipython_config.py
  78. # pyenv
  79. .python-version
  80. # pipenv
  81. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  82. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  83. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  84. # install all needed dependencies.
  85. #Pipfile.lock
  86. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  87. __pypackages__/
  88. # Celery stuff
  89. celerybeat-schedule
  90. celerybeat.pid
  91. # SageMath parsed files
  92. *.sage.py
  93. # Environments
  94. .env
  95. .venv
  96. env/
  97. venv/
  98. ENV/
  99. env.bak/
  100. venv.bak/
  101. # Spyder project settings
  102. .spyderproject
  103. .spyproject
  104. # Rope project settings
  105. .ropeproject
  106. # mkdocs documentation
  107. /site
  108. # mypy
  109. .mypy_cache/
  110. .dmypy.json
  111. dmypy.json
  112. # Pyre type checker
  113. .pyre/