Skip to content

Commit

Permalink
Merge branch 'hotfix/1.5.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
keiranmraine committed Aug 7, 2020
2 parents 3eb9295 + 33c9300 commit ae95a92
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,7 @@ in the base of the clone:

```bash
cd $PROJECTROOT
hash virtualenv || pip3 install virtualenv
virtualenv -p python3 env
python3 -m venv env
source env/bin/activate
pip install -r requirements.txt
python setup.py develop # so bin scripts can find module
Expand Down
2 changes: 1 addition & 1 deletion cgp_seq_input_val/seq_validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
Q_RANGES = {'Sanger': [33, 73],
'Solexa': [59, 104],
'Illumina 1.3': [64, 104],
'Illumina 1.5': [67, 105],
'Illumina 1.5': [66, 105], # 2=Read Segment Quality Control Indicator
'Illumina 1.8': [33, 74]}

PROG_RECORDS = 100000
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
'url': 'https://github.com/cancerit/cgp_seq_input_val',
'download_url': '',
'author_email': '[email protected]',
'version': '1.5.3',
'version': '1.5.4',
'python_requires': '>= 3.6',
'setup_requires': ['pytest'],
'install_requires': ['progressbar2', 'xlrd', 'xopen'],
Expand Down

0 comments on commit ae95a92

Please sign in to comment.