Skip to content

Commit

Permalink
Merge pull request #12 from ratschlab/development
Browse files Browse the repository at this point in the history
Prepare release
  • Loading branch information
akahles authored Nov 8, 2018
2 parents 2720e16 + fdde796 commit b93d4fb
Show file tree
Hide file tree
Showing 79 changed files with 27,157 additions and 767 deletions.
23 changes: 23 additions & 0 deletions .circleci/config.yml
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
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
Expand Down Expand Up @@ -102,3 +103,7 @@ ENV/

# Pycharm
.idea

# intermediate test data
tests/data/genome/
/scripts/generate_gt_file.py
435 changes: 435 additions & 0 deletions README.md

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions immunopepper/__init__.py
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'
13 changes: 13 additions & 0 deletions immunopepper/constant.py
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 = '.'
98 changes: 0 additions & 98 deletions immunopepper/exon_filter.py

This file was deleted.

Loading

0 comments on commit b93d4fb

Please sign in to comment.