├── .gitignore ├── LICENSE ├── README.md ├── az-cancer-panel.txt ├── fusion_pairs.txt ├── refSeq.hg19.BRCA1.NM_007294.alternateNumbers.bed ├── setup.py └── simple_sv_annotation.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.egg-info 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraZeneca-NGS/simple_sv_annotation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraZeneca-NGS/simple_sv_annotation/HEAD/README.md -------------------------------------------------------------------------------- /az-cancer-panel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraZeneca-NGS/simple_sv_annotation/HEAD/az-cancer-panel.txt -------------------------------------------------------------------------------- /fusion_pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraZeneca-NGS/simple_sv_annotation/HEAD/fusion_pairs.txt -------------------------------------------------------------------------------- /refSeq.hg19.BRCA1.NM_007294.alternateNumbers.bed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraZeneca-NGS/simple_sv_annotation/HEAD/refSeq.hg19.BRCA1.NM_007294.alternateNumbers.bed -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraZeneca-NGS/simple_sv_annotation/HEAD/setup.py -------------------------------------------------------------------------------- /simple_sv_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraZeneca-NGS/simple_sv_annotation/HEAD/simple_sv_annotation.py --------------------------------------------------------------------------------