https://github.com/pysam-developers/pysam
Raw File
Tip revision: 7d1a70e0b52ec1ac4b706f23ba45074b94d0baff authored by Andreas Heger on 28 September 2021, 14:58:19 UTC
restrict publish actions
Tip revision: 7d1a70e
.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
tests/cbcf_data
tests/tabix_data

samtools/config.h
samtools/samtools_config_vars.h
bcftools/config.h
htslib/config.status
htslib/config.h
htslib/config.log
htslib/config.mk
htslib/config_vars.h
htslib/htscodecs.mk
htslib/htslib.pc.tmp
htslib/htslib-uninstalled.pc
pysam/config.py

# linking tests
BuildRead.c
# cython files
pysam/libc*.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
doc/_build

# 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