https://github.com/pysam-developers/pysam
Raw File
Tip revision: 656f299afbb231062898e641079f6bf39c119cde authored by Kevin Jacobs on 24 August 2017, 14:01:55 UTC
Fix bcf_translate to operate on INFO and FORMAT values that must be freed. Also submitted upstream to htslib.
Tip revision: 656f299
.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

samtools/config.h
htslib/config.status
htslib/config.h
htslib/config.log
htslib/config.mk
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

# 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