├── .gitignore ├── IMG_0401.jpg ├── README.md ├── bin └── snpflip ├── examples ├── bad_example.bim ├── example.bim └── example.fa ├── setup.py ├── snp_flip ├── __init__.py ├── bim_file.py ├── reference_genome.py ├── table.py └── version.py └── tests ├── run_unit_tests.sh ├── test_convert_fa_chromosome_names.py ├── test_create_snp_table.py ├── test_find_strand.py ├── test_get_reference_genome_data.py └── test_read_bim_file.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.fai 3 | -------------------------------------------------------------------------------- /IMG_0401.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biocore-ntnu/snpflip/HEAD/IMG_0401.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biocore-ntnu/snpflip/HEAD/README.md -------------------------------------------------------------------------------- /bin/snpflip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biocore-ntnu/snpflip/HEAD/bin/snpflip -------------------------------------------------------------------------------- /examples/bad_example.bim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biocore-ntnu/snpflip/HEAD/examples/bad_example.bim -------------------------------------------------------------------------------- /examples/example.bim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biocore-ntnu/snpflip/HEAD/examples/example.bim -------------------------------------------------------------------------------- /examples/example.fa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biocore-ntnu/snpflip/HEAD/examples/example.fa -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biocore-ntnu/snpflip/HEAD/setup.py -------------------------------------------------------------------------------- /snp_flip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biocore-ntnu/snpflip/HEAD/snp_flip/__init__.py -------------------------------------------------------------------------------- /snp_flip/bim_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biocore-ntnu/snpflip/HEAD/snp_flip/bim_file.py -------------------------------------------------------------------------------- /snp_flip/reference_genome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biocore-ntnu/snpflip/HEAD/snp_flip/reference_genome.py -------------------------------------------------------------------------------- /snp_flip/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biocore-ntnu/snpflip/HEAD/snp_flip/table.py -------------------------------------------------------------------------------- /snp_flip/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.0.6" 2 | -------------------------------------------------------------------------------- /tests/run_unit_tests.sh: -------------------------------------------------------------------------------- 1 | PYTHONPATH=. py.test -m "not integration" --color=yes -svv -f tests 2 | -------------------------------------------------------------------------------- /tests/test_convert_fa_chromosome_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biocore-ntnu/snpflip/HEAD/tests/test_convert_fa_chromosome_names.py -------------------------------------------------------------------------------- /tests/test_create_snp_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biocore-ntnu/snpflip/HEAD/tests/test_create_snp_table.py -------------------------------------------------------------------------------- /tests/test_find_strand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biocore-ntnu/snpflip/HEAD/tests/test_find_strand.py -------------------------------------------------------------------------------- /tests/test_get_reference_genome_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biocore-ntnu/snpflip/HEAD/tests/test_get_reference_genome_data.py -------------------------------------------------------------------------------- /tests/test_read_bim_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biocore-ntnu/snpflip/HEAD/tests/test_read_bim_file.py --------------------------------------------------------------------------------