1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
# Mac-related dreck
.DS_Store
# Emacs edit files
*~
*#
.#
# Compiled Python modules
*.pyc
# Distribution files
build/
dist/
pyani.egg-info/
distribute*
# Unrequired test input (generated in-test)
tests/test_input/anib/*.dataframe
tests/test_input/anib/blastn/*.dataframe
tests/test_input/anib/blastall/*.dataframe
# Test output
*.log
tests/test_*_out/
tests/test_*_output/
tests/test_concordance_*/
tests/test_output
tests/test_JSpecies/C1/
tests/test_JSpecies/C2/
tests/test_JSpecies/C3/
tests/test_JSpecies/Corynebacterium/
tests/test_JSpecies/pyani_3_species/
# Test/local results databases
.pyani
# SGE output
stderr/
stdout/
jobs/
output/
# Coverage test output
cover/
.coverage
# iPython/Jupyter/R
.ipynb_checkpoints
.Rhistory
# Scratchpad for experimentation
scratch/
# RTD docs for next version
docs/
# Development virtualenvs
venv-*
.python-version
# issue-fixing directories
issue*/
# VS Code configs
.vscode
|