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

try out filtering ci workflow #188

Merged
merged 4 commits into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
98 changes: 98 additions & 0 deletions .github/workflows/filtering-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
name: Run tutorials (preprocessing)

on:
push:
branches:
- main
pull_request:
branches:
- main

env:
debug: 'true'

jobs:
preprocessing:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"] # , "macos-latest", "windows-latest"
python-version: ["3.11"]

steps:
- uses: actions/checkout@v4

- name: File tree
if: env.debug == 'true'
run: tree

- uses: conda-incubator/setup-miniconda@v3
with:
miniforge-version: latest
auto-activate-base: true
auto-update-conda: true
channels: conda-forge
channel-priority: strict
activate-environment: pipeline_env
environment-file: pipeline_env.yaml

- name: Install Panpipes
shell: bash -el {0}
run: |
pip install -e .
conda list

- name: Conda info
if: env.debug == 'true'
shell: bash -el {0}
run: conda info

- name: Conda list
if: env.debug == 'true'
shell: pwsh
run: conda list

# Note: all three files are renamed during the download to trim the "subsample_" prefix
- name: Preparing the data
run: |
mkdir -p teaseq/preprocessing && cd teaseq/preprocessing
curl -L -o teaseq_unfilt.h5mu https://figshare.com/ndownloader/files/44639302

# Note: we run the following to test that the commands works
# However, the following task will replacing the file anyway
- name: Preparing the configuration file
shell: bash -el {0}
run: |
cd teaseq/preprocessing
panpipes preprocess config

- name: Edit the submission file
run: |
cd teaseq/preprocessing
curl -o pipeline.yml https://panpipes-tutorials.readthedocs.io/en/latest/_downloads/efb55f083a8aeb1bc12f18ac61f6637b/pipeline.yml

- name: Replace template contents in configuration file
run: |
cd teaseq/preprocessing
sed -i 's+/Users/fabiola.curion/Documents/devel/miniconda3/envs/pipeline_bbknn+pipeline_env+g' pipeline.yml

- name: File tree
if: env.debug == 'true'
run: tree teaseq

- name: Review pipeline tasks
shell: bash -el {0}
run: |
cd teaseq/preprocessing
panpipes preprocess show full --local

- name: Run pipeline tasks
shell: bash -el {0}
run: |
cd teaseq/preprocessing
panpipes preprocess make full --local

- name: File tree
if: env.debug == 'true'
run: tree teaseq
2 changes: 1 addition & 1 deletion pipeline_env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- conda-forge
- defaults
dependencies:
- python=3.9
- python=3.11
- r-base=4.3.0
- r-clustree
- r-ggforce
Expand Down
36 changes: 18 additions & 18 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,43 +26,43 @@ classifiers = [
"Programming Language :: R"
]

requires-python = ">= 3.9"
requires-python = ">= 3.11"

dependencies = [
"anndata>=0.8.0",
"apsw",
"bbknn",
"cgatcore",
"drmaa",
"apsw",
"bbknn",
"cgatcore",
"drmaa",
"gevent",
"harmonypy",
"jax<=0.4.23",
"jaxlib<=0.4.23",
"leidenalg",
"jax",
"jaxlib",
"leidenalg",
"louvain",
"matplotlib<=3.7.3",
"mofapy2",
"mudata>=0.2.1",
"muon",
"numpy==1.22.4",
"numpy>=1.22.4",
"openpyxl",
"packaging",
"pandas>=1.0",
"paramiko",
"packaging",
"pandas>=1.0",
"paramiko",
"pep8",
"pysam",
"pynndescent",
"pytest",
"pyyaml",
"ruffus",
"scanorama",
"scanpy>=1.9.1",
"ruffus",
"scanorama",
"scanpy>=1.9.1",
"scib",
"seaborn<=0.12.2",
"scikit-misc",
"scikit-misc",
"scirpy",
"scrublet",
"scvi-tools>=0.16.3",
"scrublet",
"scvi-tools>=1.1.1",
"sqlalchemy"]

[project.optional-dependencies]
Expand Down