-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from ratschlab/development
Prepare release
- Loading branch information
Showing
79 changed files
with
27,157 additions
and
767 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
version: 2 | ||
jobs: | ||
build: | ||
docker: | ||
- image: circleci/python:2.7.15-stretch-node | ||
steps: | ||
- checkout | ||
- run: | ||
name: setup environment | ||
command: | | ||
mkdir ~/env | ||
virtualenv ~/env | ||
source ~/env/bin/activate | ||
pip install -r requirements_dev.txt | ||
pip install -r requirements.txt | ||
- run: | ||
name: running tests | ||
command: | | ||
mkdir ~/test_reports | ||
source ~/env/bin/activate | ||
pytest --junitxml=~/test_reports/pytest-results.xml | ||
- store_test_results: | ||
path: ~/test_reports |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
"""Top-level package for ratschlab common.""" | ||
|
||
__author__ = """Ratschlab""" | ||
__email__ = '[email protected]' | ||
__version__ = '1.0.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
''' | ||
In some cases, the output does not exist. So a special character is used in the output file. | ||
Mainly on the flag field and expression counts field in the output .tsv file | ||
For example, | ||
- flag field IS_IN_JUNCTION_LIST if no external junction file is provided | ||
- flag field JUNCTION_ANNOTATED if it is an isolated exon | ||
- field VARIANT_COMBINE if no variant existing in the exon-pair | ||
- expression field VARIANT_SEG_EXPR if no variant existing in the exon-pair | ||
- expression field JUNCTION_EXPR if it is an isolated exon | ||
''' | ||
|
||
NOT_EXIST = '.' |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.