Skip to content

Commit e2b199f

Browse files
committedApr 18, 2025
Merging conflicts. Adding to main build process
·
v2.2.1v2.1.0
2 parents 6ba0a19 + a4ce8f2 commit e2b199f

File tree

79 files changed

+509090
-917
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+509090
-917
lines changed
 

‎.github/workflows/build.yml‎

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,30 @@ jobs:
177177
push: true
178178
platforms: linux/amd64
179179

180+
build-pancpdo:
181+
runs-on: ubuntu-latest
182+
steps:
183+
- name: Checkout
184+
uses: actions/checkout@v3
185+
- name: Set up QEMU
186+
uses: docker/setup-qemu-action@v3
187+
- name: Set up Docker Buildx
188+
uses: docker/setup-buildx-action@v3
189+
- name: Login to DockerHub
190+
uses: docker/login-action@v3
191+
with:
192+
username: ${{ secrets.DOCKERHUB_USERNAME }}
193+
password: ${{ secrets.DOCKERHUB_PASSWORD }}
194+
- name: Build and push pancpdo
195+
uses: docker/build-push-action@v3
196+
with:
197+
file: ./build/docker/Dockerfile.pancpdo
198+
tags: |
199+
sgosline/pancpdo:latest
200+
sgosline/pancpdo:${{ github.ref_name }}
201+
push: true
202+
platforms: linux/amd64
203+
180204
build-upload:
181205
runs-on: ubuntu-latest
182206
steps:

‎.github/workflows/main.yml‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
tags:
66
- '*' # Triggers the workflow only on version tags
7+
workflow_dispatch: # Allows manual triggering of the workflow
78

89
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
910
permissions:
@@ -44,4 +45,4 @@ jobs:
4445
steps:
4546
- name: Deploy to GitHub Pages
4647
id: deployment
47-
uses: actions/deploy-pages@v4
48+
uses: actions/deploy-pages@v4

‎.gitignore‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,5 @@ tests/__pycache__
1818
dist
1919
build/lib
2020
build/local
21+
coderdata/_version.py
22+
local/

‎README.md‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## Cancer Omics Drug Experiment Response Dataset
22

3+
4+
35
There is a recent explosion of deep learning algorithms that to tackle the computational problem of predicting drug treatment outcome from baseline molecular measurements. To support this,we have built a benchmark dataset that harmonizes diverse datasets to better assess algorithm performance.
46

57
This package collects diverse sets of paired molecular datasets with corresponding drug sensitivity data. All data here is reprocessed and standardized so it can be easily used as a benchmark dataset for the

0 commit comments

Comments
 (0)
Please sign in to comment.