https://github.com/pysam-developers/pysam
Raw File
Tip revision: 22990a3fe02e51eedbc0691a015184927f73aa01 authored by Andreas Heger on 17 February 2015, 20:25:25 UTC
Merge pull request #78 from pysam-developers/pysam-0.8.2
Tip revision: 22990a3
.gitignore
# editor files
*~
*#

# test directory
tests/pysam/
tests/tmp*
tests/*.bam
tests/*.bai
tests/*.gz
tests/*.c
tests/*.pyxbldc
tests/*.sam
tests/*.fai
tests/pysam_data

# cython files
pysam/TabProxies.c
pysam/csamtools.c
pysam/ctabix.c
pysam/cvcf.c
pysam/chtslib.c  

###### Generic python ignores below ######

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

# C extensions
*.so

# Distribution / packaging
.Python
env/
bin/
build/
develop-eggs/
dist/
eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
.tox/
.coverage
.cache
nosetests.xml
coverage.xml

# Translations
*.mo

# Mr Developer
.mr.developer.cfg
.project
.pydevproject

# Rope
.ropeproject

# Django stuff:
*.log
*.pot

# Sphinx documentation
docs/_build/
back to top