Skip to content

Commit 99ababb

Browse files
committed
Merge branch 'release/1.0.0'
First working release
2 parents a8eee68 + 007fadd commit 99ababb

File tree

5 files changed

+18
-15
lines changed

5 files changed

+18
-15
lines changed

.dockerignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/LICENCE
2+
/INSTALL
3+
/CHANGES.md
4+
/.gitignore
5+
/.git
6+
/.travis.yml
7+
/env
8+
/dist

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
## 1.0.0
2-
* First commit
2+
* First working release
33

README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ This project hosts scripts to annotate VCF files using user defined driver genes
2424
<!-- /TOC -->
2525

2626
## Design
27-
Uses [bcftools] and tabix from htslib
27+
28+
Uses [bcftools], [tabix] and [bgzip] in user's path , these are part of [htslib] or can be installed separately
2829

2930
## Tools
3031

@@ -59,10 +60,6 @@ pip install annotateVcf.X.X.X-py3-none-any.whl
5960

6061
Release `.whl` files are generated as part of the release process and can be found on the [release page][annotateVcf-releases]
6162

62-
### Package Dependancies
63-
64-
`pip` will install the relevant dependancies, listed here for convenience, please refer requirements.txt for versions.
65-
6663
## Development environment
6764

6865
This project uses git pre-commit hooks. As these will execute on your system it
@@ -136,9 +133,11 @@ pip install --find-links=~/wheels annotateVcf
136133

137134
### Reference
138135
<!--refs-->
139-
[bcftools]: http://samtools.github.io/bcftools/bcftools.html
136+
[htslib]: https://github.com/samtools/htslib
137+
[bcftools]: https://github.com/samtools/bcftools
138+
[tabix]: https://github.com/samtools/tabix
140139
[VAGrENT]: https://github.com/cancerit/VAGrENT
141-
[travis-master-badge]: https://travis-ci.org/cancerit/annotateVcf.svg?branch=master
142-
[travis-develop-badge]: https://travis-ci.org/cancerit/annotateVcf.svg?branch=develop
140+
[travis-master-badge]: https://travis-ci.org/cancerit/annotateVCF.svg?branch=master
141+
[travis-develop-badge]: https://travis-ci.org/cancerit/annotateVCF.svg?branch=develop
143142
[travis-repo]: https://travis-ci.org/cancerit/annotateVcf
144-
[annotateVcf-releases]: https://github.com/cancerit/annotateVcf/releases
143+
[annotateVcf-releases]: https://github.com/cancerit/annotateVCF/releases

requirements.txt

Lines changed: 0 additions & 4 deletions
This file was deleted.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
'python_requires': '>= 3.3',
1313
'install_requires': ['tzlocal'],
1414
'packages': ['annotate'],
15-
'package_data': {'annotate':['config/*.conf','config/drvData/*']},
15+
'package_data': {'annotate':['config/*.conf','config/*.json','config/drvData/*']},
1616
'entry_points': {
1717
'console_scripts': ['annotateVcf=annotate.annotate_cmd:main'],
1818
}

0 commit comments

Comments
 (0)