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

Exploration notebook for creating a reference of consensus labels #936

Merged
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
1 change: 1 addition & 0 deletions .github/components/dictionary.txt
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ Jitter
JSON
Jupyter
karyotyping
LCA
leiden
LGBTQ
licensor
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/run_all-modules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ jobs:
cell-type-nonETP-ALL-03:
uses: ./.github/workflows/run_cell-type-nonETP-ALL-03.yml

cell-type-consensus:
uses: ./.github/workflows/run_cell-type-consensus.yml

## Add additional modules above this comment, and to the needs list below
check-jobs:
if: ${{ always() }}
Expand All @@ -52,6 +55,7 @@ jobs:
- cell-type-wilms-14
- cell-type-ETP-ALL-03
- cell-type-nonETP-ALL-03
- cell-type-consensus
runs-on: ubuntu-latest
steps:
- name: Checkout template file
Expand Down
39 changes: 16 additions & 23 deletions .github/workflows/run_cell-type-consensus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,39 +19,32 @@ concurrency:

on:
workflow_dispatch:
# workflow_call:
# pull_request:
# branches:
# - main
# paths:
# - analyses/cell-type-consensus/**
# - "!analyses/cell-type-consensus/Dockerfile"
# - "!analyses/cell-type-consensus/.dockerignore"
# - .github/workflows/run_cell-type-consensus.yml
workflow_call:
pull_request:
branches:
- main
paths:
- analyses/cell-type-consensus/**
- "!analyses/cell-type-consensus/Dockerfile"
- "!analyses/cell-type-consensus/.dockerignore"
- .github/workflows/run_cell-type-consensus.yml

jobs:
run-module:
if: github.repository_owner == 'AlexsLemonade'
runs-on: ubuntu-latest
container: public.ecr.aws/openscpca/cell-type-consensus:latest

steps:
- name: Install aws-cli
run: |
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip -q awscliv2.zip
./aws/install

- name: Checkout repo
uses: actions/checkout@v4

- name: Set up R
uses: r-lib/actions/setup-r@v2
with:
r-version: 4.4.0
use-public-rspm: true

- name: Set up pandoc
uses: r-lib/actions/setup-pandoc@v2

- name: Set up renv
uses: r-lib/actions/setup-renv@v2
with:
working-directory: ${{ env.MODULE_PATH }}

# Update this step as needed to download the desired data
- name: Download test data
run: ./download-data.py --test-data --format SCE
Expand Down
Loading
Loading