Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Json schema phenotype boolean to str #8

Merged
merged 8 commits into from
Mar 23, 2021
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ jobs:
docker build --build-arg BUILD_ENV=test -t ${{ github.event.repository.name }} .
- name: Get_tests_data
run: >
mkdir -p /bifrost/;
cd /bifrost/;
git clone https://github.com/ssi-dk/bifrost_test_data.git;
cd bifrost_test_data/samples;
bash download_S1.sh
Expand Down
2 changes: 1 addition & 1 deletion bifrostlib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
'database_interface'
]

__version__ = '2.1.9'
__version__ = '2.1.10'

2 changes: 1 addition & 1 deletion bifrostlib/schemas/bifrost.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,7 @@
"type": "string"
},
"phenotype": {
"type": "boolean"
"type": "string"
},
"point_mutations": {
"type": "object"
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.1.9
current_version = 2.1.10
commit = True
tag = True

Expand All @@ -16,6 +16,6 @@ replace = __version__ = '{new_version}'

[tool:pytest]
minversion = 6.0
addopts = -ra -q --durations=0
addopts = -ra -q
testpaths =
tests
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='bifrostlib',
version='2.1.9',
version='2.1.10',
description='Datahandling functions for bifrost (later to be API interface)',
url='https://github.com/ssi-dk/bifrostlib',
author="Kim Ng, Martin Basterrechea",
Expand Down