Skip to content

Commit

Permalink
Experimenting with GitHub actions (WIP)
Browse files Browse the repository at this point in the history
  • Loading branch information
datasome committed Oct 18, 2023
1 parent 02bb425 commit c5a1eb5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install -e .
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down
2 changes: 1 addition & 1 deletion cellphonedb/utils/search_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
SIMPLE_PFX = "simple:"
COMPLEX_PFX = 'complex:'
ENS_PFX = "ENS"
INTERACTION_COLUMNS = ['interacting_pair','partner_a', 'partner_b', 'gene_a', 'gene_b', 'directionality', 'classification']
INTERACTION_COLUMNS = ['interacting_pair', 'partner_a', 'partner_b', 'gene_a', 'gene_b', 'directionality', 'classification']
EXTERNAL_RESOURCE2URI = {'Reactome reaction': 'https://reactome.org/content/detail',
'Reactome complex': 'https://reactome.org/content/detail',
'ComplexPortal complex': 'https://www.ebi.ac.uk/complexportal/complex',
Expand Down

0 comments on commit c5a1eb5

Please sign in to comment.